blob: 927fa19a41257503de5a784784139938151dd094 [file] [log] [blame]
Sergey Otpuschennikov3e25b6b2020-09-11 19:45:00 +04001---
2jenkins:
3 clouds:
4 - kubernetes:
5 name: k8s-infra
6 connectTimeout: 5
7 containerCapStr: 10
8 credentialsId: k8s-infra-config
9 maxRequestsPerHostStr: 32
10 readTimeout: 15
11 skipTlsVerify: true
12 webSocket: true
13 templates:
14 - name: dind-infra
15 showRawYaml: false
16 containers:
17 - name: docker
18 args: 99d
19 command: sleep
20 envVars:
21 - envVar:
22 key: DOCKER_HOST
23 value: tcp://localhost:2375
24 image: docker:19.03.1
25 livenessProbe:
26 failureThreshold: 0
27 initialDelaySeconds: 0
28 periodSeconds: 0
29 successThreshold: 0
30 timeoutSeconds: 0
31 workingDir: /home/jenkins/agent
32 - name: docker-daemon
33 envVars:
34 - envVar:
35 key: DOCKER_TLS_CERTDIR
36 image: docker:19.03.1-dind
37 livenessProbe:
38 failureThreshold: 0
39 initialDelaySeconds: 0
40 periodSeconds: 0
41 successThreshold: 0
42 timeoutSeconds: 0
43 privileged: true
44
45credentials:
46 system:
47 domainCredentials:
48 - credentials:
49 - file:
50 id: k8s-infra-config
51 fileName: k8s-re-jenkins-us-prod.yaml
52 secretBytes: ${CRED_K8S_RE_JENKINS_CONFIG_CONTENT}
53