mirror of
https://github.com/khuedoan/homelab.git
synced 2024-12-23 01:24:36 +07:00
refactor(scripts): ignore certificates when wait main apps
This commit is contained in:
parent
e27ecd898e
commit
ebc1b98c42
@ -48,7 +48,7 @@ for ingress in ingresses:
|
|||||||
|
|
||||||
host = i.spec.rules[0].host
|
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(f"Visit https://{host} to {ingress['purpose']}")
|
||||||
|
|
||||||
print("\nThere're more services but the above is enough for you to start exploring!")
|
print("\nThere're more services but the above is enough for you to start exploring!")
|
||||||
|
Loading…
Reference in New Issue
Block a user