forked from vemulaanvesh/disrubuted_load_test
-
Notifications
You must be signed in to change notification settings - Fork 0
/
jenkins.yaml
32 lines (32 loc) · 786 Bytes
/
jenkins.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
---
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: acrpocs.azurecr.io/jenkins:latest
ports:
- containerPort: 8080
volumeMounts:
- name: jenkins-pv
mountPath: /var/jenkins_home
securityContext:
runAsUser: 1000
fsGroup: 1000
restartPolicy: Always
serviceAccountName: ""
volumes:
- name: jenkins-pv
persistentVolumeClaim:
claimName: jenkins-pvc