File tree Expand file tree Collapse file tree 3 files changed +51
-0
lines changed Expand file tree Collapse file tree 3 files changed +51
-0
lines changed Original file line number Diff line number Diff line change 23
23
ports :
24
24
- containerPort : 8090
25
25
name : metrics
26
+ livenessProbe :
27
+ httpGet :
28
+ path : /metrics
29
+ port : 8090
30
+ initialDelaySeconds : 30
31
+ periodSeconds : 20
32
+ failureThreshold : 3
33
+ successThreshold : 1
34
+ timeoutSeconds : 10
35
+ readinessProbe :
36
+ httpGet :
37
+ path : /metrics
38
+ port : 8090
39
+ periodSeconds : 5
40
+ failureThreshold : 3
41
+ successThreshold : 1
42
+ timeoutSeconds : 4
26
43
securityContext :
27
44
runAsNonRoot : true
28
45
strategy :
Original file line number Diff line number Diff line change @@ -12835,10 +12835,27 @@ spec:
12835
12835
containers:
12836
12836
- image: quay.io/argoproj/argo-rollouts:latest
12837
12837
imagePullPolicy: Always
12838
+ livenessProbe:
12839
+ failureThreshold: 3
12840
+ httpGet:
12841
+ path: /metrics
12842
+ port: 8090
12843
+ initialDelaySeconds: 30
12844
+ periodSeconds: 20
12845
+ successThreshold: 1
12846
+ timeoutSeconds: 10
12838
12847
name: argo-rollouts
12839
12848
ports:
12840
12849
- containerPort: 8090
12841
12850
name: metrics
12851
+ readinessProbe:
12852
+ failureThreshold: 3
12853
+ httpGet:
12854
+ path: /metrics
12855
+ port: 8090
12856
+ periodSeconds: 5
12857
+ successThreshold: 1
12858
+ timeoutSeconds: 4
12842
12859
securityContext:
12843
12860
runAsNonRoot: true
12844
12861
serviceAccountName: argo-rollouts
Original file line number Diff line number Diff line change @@ -12836,10 +12836,27 @@ spec:
12836
12836
- --namespaced
12837
12837
image: quay.io/argoproj/argo-rollouts:latest
12838
12838
imagePullPolicy: Always
12839
+ livenessProbe:
12840
+ failureThreshold: 3
12841
+ httpGet:
12842
+ path: /metrics
12843
+ port: 8090
12844
+ initialDelaySeconds: 30
12845
+ periodSeconds: 20
12846
+ successThreshold: 1
12847
+ timeoutSeconds: 10
12839
12848
name: argo-rollouts
12840
12849
ports:
12841
12850
- containerPort: 8090
12842
12851
name: metrics
12852
+ readinessProbe:
12853
+ failureThreshold: 3
12854
+ httpGet:
12855
+ path: /metrics
12856
+ port: 8090
12857
+ periodSeconds: 5
12858
+ successThreshold: 1
12859
+ timeoutSeconds: 4
12843
12860
securityContext:
12844
12861
runAsNonRoot: true
12845
12862
serviceAccountName: argo-rollouts
You can’t perform that action at this time.
0 commit comments