We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3dda9fb commit 746e140Copy full SHA for 746e140
1 file changed
controller/api/models.py
@@ -67,7 +67,7 @@ class Cluster(UuidAuditedModel):
67
68
owner = models.ForeignKey(settings.AUTH_USER_MODEL)
69
id = models.CharField(max_length=128, unique=True)
70
- type = models.CharField(max_length=16, choices=CLUSTER_TYPES)
+ type = models.CharField(max_length=16, choices=CLUSTER_TYPES, default='coreos')
71
72
domain = models.CharField(max_length=128)
73
hosts = models.CharField(max_length=256)
0 commit comments