25 lines
371 B
Plaintext
25 lines
371 B
Plaintext
workDir = '/workspace'
|
|
|
|
process {
|
|
executor = 'k8s'
|
|
//container = 'ubuntu:22.04'
|
|
|
|
pod = [
|
|
imagePullPolicy: 'IfNotPresent'
|
|
]
|
|
}
|
|
|
|
k8s {
|
|
namespace = 'trogantk'
|
|
|
|
storageClaimName = 'cephfs-trogantk'
|
|
storageMountPath = '/workspace'
|
|
launchDir = '/workspace/launch'
|
|
projectDir = '/workspace/projects'
|
|
cleanup = true
|
|
|
|
pod = [
|
|
nodeSelector: [usedby: 'trogantk']
|
|
]
|
|
}
|