diff --git a/app/deploy_k8s.py b/app/deploy_k8s.py index 2c3a3a9d..2614f725 100644 --- a/app/deploy_k8s.py +++ b/app/deploy_k8s.py @@ -19,7 +19,7 @@ from app.deployer import Deployer class K8sDeployer(Deployer): name: str = "k8s" - + def __init__(self, compose_files, compose_project_name, compose_env_file) -> None: config.load_kube_config() self.client = client.CoreV1Api() diff --git a/app/deployment_create.py b/app/deployment_create.py index ac16ad46..81259795 100644 --- a/app/deployment_create.py +++ b/app/deployment_create.py @@ -271,7 +271,6 @@ def init(ctx, config, output, map_ports_to_host): for named_volume in named_volumes: volume_descriptors[named_volume] = f"./data/{named_volume}" spec_file_content["volumes"] = volume_descriptors - print(f"DEBUG spec: {spec_file_content}") with open(output, "w") as output_file: yaml.dump(spec_file_content, output_file)