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!")