From d398729869380e1178b81f1f2bfb2496cebe841a Mon Sep 17 00:00:00 2001 From: Adam-D-Lewis <23342526+Adam-D-Lewis@users.noreply.github.com> Date: Mon, 1 May 2023 17:56:19 -0500 Subject: [PATCH 1/2] remove outdated comment --- nebari_workflow_controller/app.py | 1 - 1 file changed, 1 deletion(-) diff --git a/nebari_workflow_controller/app.py b/nebari_workflow_controller/app.py index 66ab241..ab07d2e 100644 --- a/nebari_workflow_controller/app.py +++ b/nebari_workflow_controller/app.py @@ -309,7 +309,6 @@ def mutate_template(container_keep_portions, spec_keep_portions, template): **value, } else: - # TODO: I think this will throw error if template doesn't have container key template["container"][key] = value elif isinstance(value, list): if key in template["container"]: From 53b2b8ed2f7b1ae2d2990c8c5c9caab664d4f78a Mon Sep 17 00:00:00 2001 From: Adam-D-Lewis <23342526+Adam-D-Lewis@users.noreply.github.com> Date: Wed, 3 May 2023 10:06:19 -0500 Subject: [PATCH 2/2] add kuberenetes dependency --- pyproject.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/pyproject.toml b/pyproject.toml index 50d4320..de36fdc 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -51,6 +51,7 @@ dependencies = [ "uvicorn==0.21.1", "pydantic==1.10.7", "jsonpatch==1.32", + "kubernetes==26.1.0", ] [project.optional-dependencies]