outposts: disable Kubernetes selection for now

This commit is contained in:
Jens Langhammer 2020-10-11 19:40:22 +02:00
parent c95efe3cde
commit 58ae159835
2 changed files with 1 additions and 2 deletions

View File

@ -15,7 +15,6 @@ class Migration(migrations.Migration):
name="deployment_type", name="deployment_type",
field=models.TextField( field=models.TextField(
choices=[ choices=[
("kubernetes", "Kubernetes"),
("docker", "Docker"), ("docker", "Docker"),
("custom", "Custom"), ("custom", "Custom"),
], ],

View File

@ -59,7 +59,7 @@ class OutpostType(models.TextChoices):
class OutpostDeploymentType(models.TextChoices): class OutpostDeploymentType(models.TextChoices):
"""Deployment types that are managed through passbook""" """Deployment types that are managed through passbook"""
KUBERNETES = "kubernetes" # KUBERNETES = "kubernetes"
DOCKER = "docker" DOCKER = "docker"
CUSTOM = "custom" CUSTOM = "custom"