Skip to content

Commit

Permalink
Update test pod for ubuntu 22-04 image and apply to sonar job
Browse files Browse the repository at this point in the history
Testing purposes

Signed-off-by: Bernd Hufmann <bernd.hufmann@ericsson.com>
  • Loading branch information
bhufmann committed Mar 22, 2024
1 parent 2ba62c9 commit 3010c62
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion jenkins/pipelines/tracecompass-sonar.Jenkinsfile
Expand Up @@ -12,7 +12,7 @@ pipeline {
agent {
kubernetes {
label 'tracecompass-sonar-build'
yamlFile 'jenkins/pod-templates/tracecompass-sonar-pod.yaml'
yamlFile 'jenkins/pod-templates/tracecompass-test-pod.yaml'
defaultContainer 'tracecompass'
}
}
Expand Down
12 changes: 6 additions & 6 deletions jenkins/pod-templates/tracecompass-test-pod.yaml
Expand Up @@ -2,19 +2,19 @@ apiVersion: v1
kind: Pod
spec:
containers:
- name: tracecompass-test
image: eclipse/tracecompass-build-env:18.04
- name: tracecompass
image: eclipse/tracecompass-build-env:22.04
imagePullPolicy: Always
tty: true
command: [ "/bin/sh" ]
args: ["-c", "/home/tracecompass/.vnc/xstartup.sh && cat"]
resources:
requests:
memory: "2.6Gi"
cpu: "1.3"
memory: "6Gi"
cpu: "2000m"
limits:
memory: "2.6Gi"
cpu: "1.3"
memory: "6Gi"
cpu: "2000m"
volumeMounts:
- name: settings-xml
mountPath: /home/jenkins/.m2/settings.xml
Expand Down

0 comments on commit 3010c62

Please sign in to comment.