Skip to content

Commit 256742c

Browse files
committed
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.) Sidenote: I was mistaken by changing the capitalization of true. YAML-1.2.2 defines true/false as the canonical values. Signed-off-by: Kurt Garloff <[email protected]>
1 parent 44e53b9 commit 256742c

File tree

1 file changed

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

1 file changed

+5
-5
lines changed

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

Lines changed: 5 additions & 5 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
1717
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)