File tree Expand file tree Collapse file tree 1 file changed +13
-9
lines changed Expand file tree Collapse file tree 1 file changed +13
-9
lines changed Original file line number Diff line number Diff line change @@ -24,14 +24,14 @@ releases:
24
24
pullPolicy : Always
25
25
pullSecrets :
26
26
- " pull-secret"
27
- replicaCount : 2
27
+ replicaCount : 10
28
28
# Deployment configuration
29
29
deployment :
30
30
enabled : true
31
31
strategy :
32
32
type : " RollingUpdate"
33
33
rollingUpdate :
34
- maxUnavailable : 0
34
+ maxUnavailable : 2
35
35
revisionHistoryLimit : 10
36
36
37
37
# Configuration Settings
@@ -40,7 +40,8 @@ releases:
40
40
enabled : true
41
41
env :
42
42
# Color to deploy
43
- COLOR : " cyan"
43
+ # COLOR: "#0099ff" # Blue
44
+ COLOR : " #009900" # Green
44
45
45
46
# Service endpoint
46
47
service :
@@ -72,27 +73,30 @@ releases:
72
73
- ' {{ requiredEnv "COLOR" }}.{{ env "APP_HOSTNAME" }}'
73
74
74
75
probes :
76
+ # Probe that ensures service is healthy
75
77
livenessProbe :
76
78
httpGet :
77
79
path : /healthz
78
80
port : default
79
81
scheme : HTTP
80
- periodSeconds : 60
81
- initialDelaySeconds : 5
82
+ periodSeconds : 5
83
+ initialDelaySeconds : 0
82
84
timeoutSeconds : 5
83
85
successThreshold : 1
84
- failureThreshold : 5
86
+ failureThreshold : 3
85
87
scheme : HTTP
88
+
89
+ # Probe that ensures service has started
86
90
readinessProbe :
87
91
httpGet :
88
92
path : /healthz
89
93
port : default
90
94
scheme : HTTP
91
- periodSeconds : 60
92
- initialDelaySeconds : 10
95
+ periodSeconds : 3
96
+ initialDelaySeconds : 0
93
97
timeoutSeconds : 5
94
98
successThreshold : 1
95
- failureThreshold : 5
99
+ failureThreshold : 2
96
100
97
101
resources :
98
102
requests :
You can’t perform that action at this time.
0 commit comments