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"