-
Bug
-
Resolution: Done
-
Normal
-
None
-
4.13.z
-
No
-
1
-
OSDOCS Sprint 243, OSDOCS Sprint 244
-
2
-
False
-
-
N/A
-
Release Note Not Required
Description of problem:
The install-config.yaml example in section "Create the preferred configuration input" contains two errors: 1) compute is an array, so there should be a "-" on the first line 2) 192.168.111.0/16 is not a valid cidr
Version-Release number of selected component (if applicable):
4.13
Actual results:
$ cat << EOF > ./my-cluster/install-config.yaml ... compute: architecture: amd64 ... networking: machineNetwork: - cidr: 192.168.111.0/16
Expected results:
$ cat << EOF > ./my-cluster/install-config.yaml ... compute: - architecture: amd64 ... networking: machineNetwork: - cidr: 192.168.0.0/16