Skip to content
Snippets Groups Projects

feat(CI): Cleanup resource requests

Merged Reinhard Biegel requested to merge 278-docker-image-pull-timeout into develop
3 files
+ 2
11
Compare changes
  • Side-by-side
  • Inline
Files
3
+ 2
5
@@ -18,6 +18,7 @@ pipeline {
@@ -18,6 +18,7 @@ pipeline {
checkoutToSubdirectory('repo')
checkoutToSubdirectory('repo')
timeout(time: 10, unit: 'HOURS')
timeout(time: 10, unit: 'HOURS')
timestamps()
timestamps()
 
disableConcurrentBuilds(abortPrevious: true)
}
}
environment {
environment {
IMAGE_NAME = "eclipseopenpass/opsim-ci"
IMAGE_NAME = "eclipseopenpass/opsim-ci"
@@ -106,9 +107,6 @@ spec:
@@ -106,9 +107,6 @@ spec:
limits:
limits:
memory: "16Gi"
memory: "16Gi"
cpu: "4"
cpu: "4"
requests:
memory: "16Gi"
cpu: "4"
volumeMounts:
volumeMounts:
- name: openpass-cache-storage
- name: openpass-cache-storage
mountPath: "/home/jenkins/cache"
mountPath: "/home/jenkins/cache"
@@ -124,10 +122,9 @@ spec:
@@ -124,10 +122,9 @@ spec:
persistentVolumeClaim:
persistentVolumeClaim:
claimName: openpass-cache-storage
claimName: openpass-cache-storage
securityContext:
securityContext:
fsGroupChangePolicy: "OnRootMismatch"
runAsUser: 1002870000
seLinuxOptions:
seLinuxOptions:
level: s0:c4,c54
level: s0:c4,c54
 
type: spc_t
"""
"""
}
}
}
}
Loading