outposts: disable Kubernetes selection for now
This commit is contained in:
parent
c95efe3cde
commit
58ae159835
|
@ -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"),
|
||||||
],
|
],
|
||||||
|
|
|
@ -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"
|
||||||
|
|
||||||
|
|
Reference in New Issue