kata-deploy: Increase the wait timeout for control plane to come up

Recent runs of setting up aks with github workflows shows that a timeout
of 5m is not always sufficent fot aks control plane to come up.
Increase this from 5m to 10m.

Fixes #839

Signed-off-by: Archana Shinde <archana.m.shinde@intel.com>
This commit is contained in:
Archana Shinde 2019-12-02 13:38:11 -08:00
parent 0b3f5c7570
commit e9bb8e58ff

View File

@ -49,5 +49,5 @@ function setup_aks() {
kubectl wait --timeout=10m --for=condition=Ready --all nodes
# make sure coredns is up before moving forward:
kubectl wait --timeout=5m -n kube-system --for=condition=Available deployment.extensions/coredns
kubectl wait --timeout=10m -n kube-system --for=condition=Available deployment.extensions/coredns
}