File tree Expand file tree Collapse file tree 2 files changed +12
-3
lines changed
src/portal/CloudHealthOffice.Portal/k8s Expand file tree Collapse file tree 2 files changed +12
-3
lines changed Original file line number Diff line number Diff line change @@ -391,7 +391,7 @@ jobs:
391391 - name : Rollout restart portal
392392 run : |
393393 kubectl rollout restart deployment/portal -n ${{ env.NAMESPACE }}
394- kubectl rollout status deployment/portal -n ${{ env.NAMESPACE }} --timeout=180s
394+ kubectl rollout status deployment/portal -n ${{ env.NAMESPACE }} --timeout=600s
395395
396396 - name : Deployment summary
397397 run : |
Original file line number Diff line number Diff line change 3636 selector :
3737 matchLabels :
3838 app : portal
39+ strategy :
40+ type : RollingUpdate
41+ rollingUpdate :
42+ maxUnavailable : 0
43+ maxSurge : 1
3944 template :
4045 metadata :
4146 labels :
@@ -192,18 +197,22 @@ spec:
192197 limits :
193198 memory : " 512Mi"
194199 cpu : " 1000m"
200+ startupProbe :
201+ httpGet :
202+ path : /health
203+ port : 8080
204+ failureThreshold : 30
205+ periodSeconds : 5
195206 livenessProbe :
196207 httpGet :
197208 path : /health
198209 port : 8080
199- initialDelaySeconds : 30
200210 periodSeconds : 10
201211 timeoutSeconds : 5
202212 readinessProbe :
203213 httpGet :
204214 path : /health
205215 port : 8080
206- initialDelaySeconds : 10
207216 periodSeconds : 5
208217 timeoutSeconds : 5
209218---
You can’t perform that action at this time.
0 commit comments