-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjenkins-deployment-storage.yaml
40 lines (38 loc) · 1.06 KB
/
jenkins-deployment-storage.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
---
apiVersion: apps/v1
kind: Deployment
metadata:
name: jenkins
spec:
replicas: 1
selector:
matchLabels:
app: jenkins
template:
metadata:
labels:
app: jenkins
spec:
containers:
- name: jenkins
image: jenkins/jenkins:2.319.1
ports:
- containerPort: 8080
volumeMounts:
- name: jenkins-serviceaccount
mountPath: "/jenkins"
readOnly: true
- mountPath: /var/jenkins_home
name: jenkins-home
env:
- name: GOOGLE_APPLICATION_CREDENTIALS
value: /jenkins/jenkins-test-project.json
- name: JAVA_OPTS
value: -Djenkins.install.runSetupWizard=false
volumes:
- name: jenkins-serviceaccount
secret:
secretName: jenkins-serviceaccount
- hostPath:
path: /data/jenkins_home
name: jenkins-home