-
Notifications
You must be signed in to change notification settings - Fork 895
/
Copy pathargo-rollouts-deployment.yaml
71 lines (71 loc) · 1.79 KB
/
argo-rollouts-deployment.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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
apiVersion: apps/v1
kind: Deployment
metadata:
name: argo-rollouts
labels:
app.kubernetes.io/component: rollouts-controller
app.kubernetes.io/name: argo-rollouts
app.kubernetes.io/part-of: argo-rollouts
spec:
replicas: 1
selector:
matchLabels:
app.kubernetes.io/name: argo-rollouts
template:
metadata:
labels:
app.kubernetes.io/name: argo-rollouts
spec:
serviceAccountName: argo-rollouts
containers:
- name: argo-rollouts
image: quay.io/argoproj/argo-rollouts:latest
imagePullPolicy: Always
ports:
- containerPort: 8090
name: metrics
- containerPort: 8080
name: healthz
livenessProbe:
httpGet:
path: /healthz
port: healthz
initialDelaySeconds: 30
periodSeconds: 20
failureThreshold: 3
successThreshold: 1
timeoutSeconds: 10
readinessProbe:
httpGet:
path: /metrics
port: metrics
initialDelaySeconds: 10
periodSeconds: 5
failureThreshold: 3
successThreshold: 1
timeoutSeconds: 4
securityContext:
allowPrivilegeEscalation: false
capabilities:
drop:
- ALL
readOnlyRootFilesystem: true
seccompProfile:
type: RuntimeDefault
resources:
limits:
ephemeral-storage: 1Gi
volumeMounts:
- name: plugin-bin
mountPath: /home/argo-rollouts/plugin-bin
- name: tmp
mountPath: /tmp
securityContext:
runAsNonRoot: true
volumes:
- name: plugin-bin
emptyDir: {}
- name: tmp
emptyDir: {}
strategy:
type: RollingUpdate