You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'd suggest setting wait_timeout: 600.
In my local deployment in takes around 3 minutes for all coredns pods to become ready,
but the default timeout for wait is 120 (2 minutes).
As a result ->
<...> FAILED! => {"changed": false, "duration": 120, "method": "update", "msg": "\"Deployment\" \"coredns\": Timed out waiting on resource", <...>
I suggest:
- name: Wait for core-dns pods to be up and runningkubernetes.core.k8s:
state: presentkind: Deploymentname: coredns
...
wait: truewait_timeout: 600
The text was updated successfully, but these errors were encountered:
I'd suggest setting
wait_timeout: 600
.In my local deployment in takes around 3 minutes for all coredns pods to become ready,
but the default timeout for
wait
is 120 (2 minutes).As a result ->
I suggest:
The text was updated successfully, but these errors were encountered: