We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dad78c6 commit 1232d9aCopy full SHA for 1232d9a
jenkinsfile
@@ -7,8 +7,21 @@ podTemplate(
7
args: 'cat',
8
command: '/bin/sh -c',
9
image: 'baseerp/docker:1.4',
10
- name: 'docker-container')
+ livenessProbe: containerLivenessProbe(execArgs: '',
11
+ failureThreshold: 0,
12
+ initialDelaySeconds: 0,
13
+ periodSeconds: 0,
14
+ successThreshold: 0,
15
+ timeoutSeconds: 0),
16
+ name: 'docker-container',
17
+ resourceLimitCpu: '',
18
+ resourceLimitMemory: '',
19
+ resourceRequestCpu: '',
20
+ resourceRequestMemory: '',
21
+ ttyEnabled: true,
22
+ workingDir: '/home/jenkins/agent')
23
],
24
+ volumes: [hostPathVolume(hostPath: '/var/run/docker.sock', mountPath: '/var/run/docker.sock')],
25
nodeSelector: 'type=jenkins-worker',
26
)
27
{
0 commit comments