Skip to content

Commit db18f99

Browse files
committed
Fix capitalization of True.
Also remove redundant quotes. In YAML, we typically only quote strings if they contain whitespace or could be confused with other data types. (More quoting does not hurt though.) Signed-off-by: Kurt Garloff <[email protected]>
1 parent 44e53b9 commit db18f99

File tree

1 file changed

+6
-6
lines changed
  • providers/openstack/scs/cluster-class/templates

1 file changed

+6
-6
lines changed

providers/openstack/scs/cluster-class/templates/image.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,18 +11,18 @@ spec:
1111
resource:
1212
properties:
1313
hardware:
14-
diskBus: "scsi"
15-
scsiModel: "virtio-scsi"
14+
diskBus: scsi
15+
scsiModel: virtio-scsi
1616
vifModel: virtio
17-
qemuGuestAgent: true
17+
qemuGuestAgent: True
1818
rngModel: virtio
19-
architecture: "x86_64"
19+
architecture: x86_64
2020
minDiskGB: 20
2121
minMemoryMB: 2048
2222
operatingSystem:
23-
distro: "ubuntu"
23+
distro: ubuntu
2424
version: "22.04"
25-
# hypervisorType: kvm
25+
# hypervisorType: kvm # kvm not officially supported, could use qemu
2626
content:
2727
diskFormat: qcow2
2828
download:

0 commit comments

Comments
 (0)