From e1e7075bf3e1f5a6492dbc487508205a9aa68e0b Mon Sep 17 00:00:00 2001 From: Prathamesh Musale Date: Mon, 10 Feb 2025 14:10:16 +0530 Subject: [PATCH] Fix arg --- stack_orchestrator/deploy/k8s/deploy_k8s.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stack_orchestrator/deploy/k8s/deploy_k8s.py b/stack_orchestrator/deploy/k8s/deploy_k8s.py index 3d2c6614..c2df1bd1 100644 --- a/stack_orchestrator/deploy/k8s/deploy_k8s.py +++ b/stack_orchestrator/deploy/k8s/deploy_k8s.py @@ -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}")