Fix arg
All checks were successful
Lint Checks / Run linter (pull_request) Successful in 17s
Smoke Test / Run basic test suite (pull_request) Successful in 1m48s
Webapp Test / Run webapp test suite (pull_request) Successful in 1m55s
Deploy Test / Run deploy test suite (pull_request) Successful in 2m40s
K8s Deployment Control Test / Run deployment control suite on kind/k8s (pull_request) Successful in 3m10s
K8s Deploy Test / Run deploy test suite on kind/k8s (pull_request) Successful in 3m53s

This commit is contained in:
Prathamesh Musale 2025-02-10 14:10:16 +05:30
parent e491545354
commit e1e7075bf3

View File

@ -238,7 +238,7 @@ class K8sDeployer(Deployer):
print(f"Using existing certificate: {certificate}")
certificate_by_host[http_proxy_info["host-name"]] = certificate
ingress: client.V1Ingress = self.cluster_info.get_ingress(use_tls=use_tls, certificates_by_host_name=certificate_by_host)
ingress: client.V1Ingress = self.cluster_info.get_ingress(use_tls=use_tls, certificate_by_host=certificate_by_host)
if ingress:
if opts.o.debug:
print(f"Sending this ingress: {ingress}")