From 58ae159835f52a87148d18073818f36476e60f71 Mon Sep 17 00:00:00 2001 From: Jens Langhammer Date: Sun, 11 Oct 2020 19:40:22 +0200 Subject: [PATCH] outposts: disable Kubernetes selection for now --- passbook/outposts/migrations/0006_auto_20201003_2239.py | 1 - passbook/outposts/models.py | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/passbook/outposts/migrations/0006_auto_20201003_2239.py b/passbook/outposts/migrations/0006_auto_20201003_2239.py index 55effdc3e..3ca23ba55 100644 --- a/passbook/outposts/migrations/0006_auto_20201003_2239.py +++ b/passbook/outposts/migrations/0006_auto_20201003_2239.py @@ -15,7 +15,6 @@ class Migration(migrations.Migration): name="deployment_type", field=models.TextField( choices=[ - ("kubernetes", "Kubernetes"), ("docker", "Docker"), ("custom", "Custom"), ], diff --git a/passbook/outposts/models.py b/passbook/outposts/models.py index 90a3df308..be9f44343 100644 --- a/passbook/outposts/models.py +++ b/passbook/outposts/models.py @@ -59,7 +59,7 @@ class OutpostType(models.TextChoices): class OutpostDeploymentType(models.TextChoices): """Deployment types that are managed through passbook""" - KUBERNETES = "kubernetes" + # KUBERNETES = "kubernetes" DOCKER = "docker" CUSTOM = "custom"