Changes for remote k8s #655

Merged
telackey merged 9 commits from dboreham/remote-k8s into main 2023-11-20 16:12:57 +00:00
Showing only changes of commit f2a72cd8b4 - Show all commits

View File

@ -52,7 +52,7 @@ class K8sDeployer(Deployer):
config.load_kube_config(context=f"kind-{self.kind_cluster_name}")
else:
# Get the config file and pass to load_kube_config()
config.load_kube_config(config_file=self.deployment_dir.joinpath(constants.kube_config_filename))
config.load_kube_config(config_file=self.deployment_dir.joinpath(constants.kube_config_filename).as_posix())
self.core_api = client.CoreV1Api()
self.apps_api = client.AppsV1Api()