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",
|
||||
field=models.TextField(
|
||||
choices=[
|
||||
("kubernetes", "Kubernetes"),
|
||||
("docker", "Docker"),
|
||||
("custom", "Custom"),
|
||||
],
|
||||
|
|
|
@ -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"
|
||||
|
||||
|
|
Reference in New Issue