From ebc1b98c42a0c37cf43cdc66556b84f76719422c Mon Sep 17 00:00:00 2001 From: Khue Doan Date: Sat, 12 Mar 2022 10:50:16 +0700 Subject: [PATCH] refactor(scripts): ignore certificates when wait main apps --- scripts/wait-main-apps | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/wait-main-apps b/scripts/wait-main-apps index 1e4ea953..64b56671 100755 --- a/scripts/wait-main-apps +++ b/scripts/wait-main-apps @@ -48,7 +48,7 @@ for ingress in ingresses: host = i.spec.rules[0].host - if requests.get(f"https://{host}").status_code == 200: + if requests.get(f"https://{host}", verify=False).status_code == 200: print(f"Visit https://{host} to {ingress['purpose']}") print("\nThere're more services but the above is enough for you to start exploring!")