Skip to content

Commit

Permalink
Add pod ui-test-agent
Browse files Browse the repository at this point in the history
Signed-off-by: Philippe DUL <philippe.dul@thalesgroup.com>
  • Loading branch information
pdulth authored and sandupostaru committed Jul 2, 2020
1 parent 94255f9 commit 2436f6a
Showing 1 changed file with 61 additions and 0 deletions.
61 changes: 61 additions & 0 deletions resources/podTemplates/ui-test-agent-3.29.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,61 @@
apiVersion: v1
kind: Pod
spec:
containers:
- name: uitests
image: eclipsecbijenkins/ui-test-agent:3.29
tty: true
command: [ "uid_entrypoint", "cat" ]
resources:
requests:
memory: "3.5Gi"
cpu: "1"
limits:
memory: "3.5Gi"
cpu: "1"
volumeMounts:
- name: volume-known-hosts
mountPath: /home/jenkins/.ssh
- name: tools
mountPath: /opt/tools
- name: settings-xml
mountPath: /home/jenkins/.m2/settings.xml
subPath: settings.xml
readOnly: true
- name: toolchains-xml
mountPath: /home/jenkins/.m2/toolchains.xml
subPath: toolchains.xml
readOnly: true
- name: settings-security-xml
mountPath: /home/jenkins/.m2/settings-security.xml
subPath: settings-security.xml
readOnly: true
- name: m2-repo
mountPath: /home/jenkins/.m2/repository
volumes:
- name: volume-known-hosts
configMap:
name: known-hosts
- name: tools
persistentVolumeClaim:
claimName: tools-claim-jiro-capella
- name: settings-xml
secret:
secretName: m2-secret-dir
items:
- key: settings.xml
path: settings.xml
- name: toolchains-xml
configMap:
name: m2-dir
items:
- key: toolchains.xml
path: toolchains.xml
- name: settings-security-xml
secret:
secretName: m2-secret-dir
items:
- key: settings-security.xml
path: settings-security.xml
- name: m2-repo
emptyDir: {}

0 comments on commit 2436f6a

Please sign in to comment.