From e9bb8e58ff2e28b3d5fdeae7f7f3f159c855db18 Mon Sep 17 00:00:00 2001 From: Archana Shinde Date: Mon, 2 Dec 2019 13:38:11 -0800 Subject: [PATCH] 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 --- kata-deploy/action/setup-aks.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kata-deploy/action/setup-aks.sh b/kata-deploy/action/setup-aks.sh index 967f500b79..1bb30e2ec9 100755 --- a/kata-deploy/action/setup-aks.sh +++ b/kata-deploy/action/setup-aks.sh @@ -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 }