diff --git a/src/devops/models.py b/src/devops/models.py index b56e0046..c1dff3f6 100644 --- a/src/devops/models.py +++ b/src/devops/models.py @@ -199,7 +199,7 @@ class Node(ExternalModel): hypervisor = choices('kvm') os_type = choices('hvm') architecture = choices('x86_64', 'i686') - boot = ['hd'] + boot = ['network', 'cdrom', 'hd'] metadata = models.CharField(max_length=255, null=True) role = models.CharField(max_length=255, null=True) vcpu = models.PositiveSmallIntegerField(null=False, default=1)