Skip to content

Commit 38667a1

Browse files
authored
Merge pull request #59628 from apinnick/fix-yaml-ellipses
Update YAML ellipses
2 parents 80d50c5 + 3d9e0ac commit 38667a1

File tree

40 files changed

+79
-79
lines changed

40 files changed

+79
-79
lines changed

modules/virt-about-runstrategies-vms.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,6 @@ kind: VirtualMachine
6060
spec:
6161
RunStrategy: Always <1>
6262
template:
63-
...
63+
# ...
6464
----
6565
<1> The VMI's current `RunStrategy` setting.

modules/virt-adding-kernel-arguments-enable-iommu.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ spec:
3131
version: 3.2.0
3232
kernelArguments:
3333
- intel_iommu=on <3>
34-
...
34+
# ...
3535
----
3636
<1> Applies the new kernel argument only to worker nodes.
3737
<2> The `name` indicates the ranking of this kernel argument (100) among the machine configs and its purpose. If you have an AMD CPU, specify the kernel argument as `amd_iommu=on`.

modules/virt-adding-vtpm-to-vm.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ spec:
3333
domain:
3434
devices:
3535
tpm: {} <1>
36-
...
36+
# ...
3737
----
3838
<1> Adds the TPM device to the VM.
3939

modules/virt-attaching-vm-secondary-network-cli.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,14 +35,14 @@ spec:
3535
name: <default>
3636
- bridge: {}
3737
name: <bridge-net> <1>
38-
...
38+
# ...
3939
networks:
4040
- name: <default>
4141
pod: {}
4242
- name: <bridge-net> <2>
4343
multus:
4444
networkName: <network-namespace>/<a-bridge-network> <3>
45-
...
45+
# ...
4646
----
4747
<1> The name of the bridge interface.
4848
<2> The name of the network. This value must match the `name` value of the corresponding `spec.template.spec.domain.devices.interfaces` entry.

modules/virt-attaching-vm-to-sriov-network.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ You can connect the virtual machine (VM) to the SR-IOV network by including the
1515
[source,yaml]
1616
----
1717
kind: VirtualMachine
18-
...
18+
# ...
1919
spec:
2020
domain:
2121
devices:
@@ -30,7 +30,7 @@ spec:
3030
- name: <nic1> <5>
3131
multus:
3232
networkName: <sriov-network> <6>
33-
...
33+
# ...
3434
----
3535
<1> A unique name for the interface that is connected to the pod network.
3636
<2> The `masquerade` binding to the default pod network.

modules/virt-booting-vms-uefi-mode.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ spec:
4545
bootloader:
4646
efi:
4747
secureBoot: true <2>
48-
...
48+
# ...
4949
----
5050
<1> {VirtProductName} requires System Management Mode (`SMM`) to be enabled for Secure Boot in UEFI mode to occur.
5151
<2> {VirtProductName} supports a VM with or without Secure Boot when using UEFI mode. If Secure Boot is enabled, then UEFI mode is required. However, UEFI mode can be enabled without using Secure Boot.

modules/virt-cloning-local-volume-to-another-node.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ The following snippet shows that the PV is on `node01`:
7070
.Example output
7171
[source,yaml]
7272
----
73-
...
73+
# ...
7474
spec:
7575
nodeAffinity:
7676
required:
@@ -80,7 +80,7 @@ spec:
8080
operator: In
8181
values:
8282
- node01 <2>
83-
...
83+
# ...
8484
----
8585
<1> The `kubernetes.io/hostname` key uses the node hostname to select a node.
8686
<2> The hostname of the node.

modules/virt-configuring-huge-pages-for-vms.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ for a virtual machine that requests a total of `4Gi` memory with a page size of
3434
[source,yaml]
3535
----
3636
kind: VirtualMachine
37-
...
37+
# ...
3838
spec:
3939
domain:
4040
resources:
@@ -43,7 +43,7 @@ spec:
4343
memory:
4444
hugepages:
4545
pageSize: "1Gi" <2>
46-
...
46+
# ...
4747
----
4848
<1> The total amount of memory requested for the virtual machine. This value must be divisible by the page size.
4949
<2> The size of each huge page. Valid values for x86_64 architecture are `1Gi` and `2Mi`. The page size must be smaller than the requested memory.

modules/virt-configuring-ip-for-new-vm-cloud-init.adoc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,12 @@ You can use cloud-init to configure an IP address when you create a virtual mach
1818
----
1919
kind: VirtualMachine
2020
spec:
21-
...
21+
# ...
2222
volumes:
2323
- cloudInitNoCloud:
2424
networkData: |
2525
version: 2
26-
ethernets:
26+
ethernets:
2727
eth1: <1>
2828
dhcp4: true <2>
2929
----
@@ -36,7 +36,7 @@ spec:
3636
----
3737
kind: VirtualMachine
3838
spec:
39-
...
39+
# ...
4040
volumes:
4141
- cloudInitNoCloud:
4242
networkData: |

modules/virt-configuring-masquerade-mode-dual-stack.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ apiVersion: kubevirt.io/v1
2626
kind: VirtualMachine
2727
metadata:
2828
name: example-vm-ipv6
29-
...
29+
# ...
3030
interfaces:
3131
- name: default
3232
masquerade: {} <1>

0 commit comments

Comments
 (0)