Skip to content

Commit 746e140

Browse files
author
Matthew Fisher
committed
feat(controller): make coreos the default cluster
1 parent 3dda9fb commit 746e140

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

controller/api/models.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ class Cluster(UuidAuditedModel):
6767

6868
owner = models.ForeignKey(settings.AUTH_USER_MODEL)
6969
id = models.CharField(max_length=128, unique=True)
70-
type = models.CharField(max_length=16, choices=CLUSTER_TYPES)
70+
type = models.CharField(max_length=16, choices=CLUSTER_TYPES, default='coreos')
7171

7272
domain = models.CharField(max_length=128)
7373
hosts = models.CharField(max_length=256)

0 commit comments

Comments
 (0)