Skip to content
Snippets Groups Projects
Commit 0f90d45e authored by ThanKarab's avatar ThanKarab
Browse files

Increase controller k8s initial delay startup probe.

parent 2b11a0b7
No related branches found
Tags EOL_hx_v2
No related merge requests found
......@@ -318,9 +318,13 @@ jobs:
with:
run: kubectl logs -l nodeType=localnode -c node --tail -1
- name: Wait for CONTROLLER container to become ready
uses: jakejarvis/wait-action@master
with:
time: '60s'
- name: Run Healthcheck
run: curl "http://172.17.0.1:5000/healthcheck"
continue-on-error: true # The first healthcheck could fail due to timeouts involved. When it times out, successful or not, everything should be running.
- name: Update NodeLandscapeAggregator
run: curl -X POST "http://172.17.0.1:5000/nla"
......
......@@ -67,14 +67,13 @@ spec:
httpGet:
path: /healthcheck
port: 5000
initialDelaySeconds: 30
initialDelaySeconds: 60
periodSeconds: 30
timeoutSeconds: {{ .Values.controller.celery_tasks_timeout }}
livenessProbe:
httpGet:
path: /healthcheck
port: 5000
initialDelaySeconds: 30
periodSeconds: 30
timeoutSeconds: {{ .Values.controller.celery_tasks_timeout }}
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment