Skip to content

Commit 4a1b550

Browse files
authored
Merge pull request #29158 from mburke5678/okd-issue-457
Documentation indicates OpenShiftSDN is a (preferred) supported default network CNI Provider
2 parents 7f1433c + 71c08fc commit 4a1b550

12 files changed

+68
-0
lines changed

modules/installation-aws-config-yaml.adoc

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,12 @@ endif::[]
9595
hostPrefix: 23
9696
machineNetwork:
9797
- cidr: 10.0.0.0/16
98+
ifndef::openshift-origin[]
9899
networkType: OpenShiftSDN
100+
endif::openshift-origin[]
101+
ifdef::openshift-origin[]
102+
networkType: OVNKubernetes
103+
endif::openshift-origin[]
99104
serviceNetwork:
100105
- 172.30.0.0/16
101106
platform:

modules/installation-azure-config-yaml.adoc

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,12 @@ endif::[]
7171
hostPrefix: 23
7272
machineNetwork:
7373
- cidr: 10.0.0.0/16
74+
ifndef::openshift-origin[]
7475
networkType: OpenShiftSDN
76+
endif::openshift-origin[]
77+
ifdef::openshift-origin[]
78+
networkType: OVNKubernetes
79+
endif::openshift-origin[]
7580
serviceNetwork:
7681
- 172.30.0.0/16
7782
platform:

modules/installation-bare-metal-config-yaml.adoc

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,12 @@ networking:
9191
clusterNetwork:
9292
- cidr: 10.128.0.0/14 <7>
9393
hostPrefix: 23 <8>
94+
ifndef::openshift-origin[]
9495
networkType: OpenShiftSDN
96+
endif::openshift-origin[]
97+
ifdef::openshift-origin[]
98+
networkType: OVNKubernetes
99+
endif::openshift-origin[]
95100
serviceNetwork: <9>
96101
- 172.30.0.0/16
97102
platform:

modules/installation-configuration-parameters.adoc

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -270,9 +270,17 @@ Not all CCO modes are supported for all cloud providers. For more information on
270270
|Required if you use `networking.machineNetwork`. The IP block address pool. The default is `10.0.0.0/16` for all platforms other than libvirt. For libvirt, the default is `192.168.126.0/24`.
271271
|IP network. IP networks are represented as strings using Classless Inter-Domain Routing (CIDR) notation with a traditional IP address or network number, followed by the forward slash (/) character, followed by a decimal value between 0 and 32 that describes the number of significant bits. For example, `10.0.0.0/16` represents IP addresses `10.0.0.0` through `10.0.255.255`.
272272

273+
ifndef::openshift-origin[]
273274
|`networking.networkType`
274275
|The type of network to install. The default is `OpenShiftSDN`.
275276
|String
277+
endif::openshift-origin[]
278+
279+
ifdef::openshift-origin[]
280+
|`networking.networkType`
281+
|The type of network to install. The default is `OVNKubernetes`.
282+
|String
283+
endif::openshift-origin[]
276284

277285
|`networking.serviceNetwork`
278286
|The IP address pools for services. The default is 172.30.0.0/16.

modules/installation-gcp-config-yaml.adoc

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,12 @@ endif::[]
8585
hostPrefix: 23
8686
machineNetwork:
8787
- cidr: 10.0.0.0/16
88+
ifndef::openshift-origin[]
8889
networkType: OpenShiftSDN
90+
endif::openshift-origin[]
91+
ifdef::openshift-origin[]
92+
networkType: OVNKubernetes
93+
endif::openshift-origin[]
8994
serviceNetwork:
9095
- 172.30.0.0/16
9196
platform:

modules/installation-gcp-user-infra-shared-vpc-config-yaml.adoc

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,12 @@ networking:
4444
hostPrefix: 23
4545
machineNetwork:
4646
- cidr: 10.0.0.0/16
47+
ifndef::openshift-origin[]
4748
networkType: OpenShiftSDN
49+
endif::openshift-origin[]
50+
ifdef::openshift-origin[]
51+
networkType: OVNKubernetes
52+
endif::openshift-origin[]
4853
serviceNetwork:
4954
- 172.30.0.0/16
5055
platform:

modules/installation-installer-provisioned-vsphere-config-yaml.adoc

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,12 @@ networking:
4848
hostPrefix: 23
4949
machineNetwork:
5050
- cidr: 10.0.0.0/16
51+
ifndef::openshift-origin[]
5152
networkType: OpenShiftSDN
53+
endif::openshift-origin[]
54+
ifdef::openshift-origin[]
55+
networkType: OVNKubernetes
56+
endif::openshift-origin[]
5257
serviceNetwork:
5358
- 172.30.0.0/16
5459
endif::network[]

modules/installation-osp-config-yaml.adoc

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,12 @@ networking:
3838
- cidr: 10.0.0.0/16
3939
serviceNetwork:
4040
- 172.30.0.0/16
41+
ifndef::openshift-origin[]
4142
networkType: OpenShiftSDN
43+
endif::openshift-origin[]
44+
ifdef::openshift-origin[]
45+
networkType: OVNKubernetes
46+
endif::openshift-origin[]
4247
platform:
4348
openstack:
4449
cloud: mycloud

modules/installation-osp-restricted-config-yaml.adoc

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,12 @@ networking:
3838
machineCIDR: 10.0.0.0/16
3939
serviceNetwork:
4040
- 172.30.0.0/16
41+
ifndef::openshift-origin[]
4142
networkType: OpenShiftSDN
43+
endif::openshift-origin[]
44+
ifdef::openshift-origin[]
45+
networkType: OVNKubernetes
46+
endif::openshift-origin[]
4247
platform:
4348
openstack:
4449
region: region1

modules/installing-rhv-example-install-config-yaml.adoc

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,12 @@ networking:
5050
hostPrefix: 23
5151
machineNetwork:
5252
- cidr: 10.0.0.0/16
53+
ifndef::openshift-origin[]
5354
networkType: OpenShiftSDN
55+
endif::openshift-origin[]
56+
ifdef::openshift-origin[]
57+
networkType: OVNKubernetes
58+
endif::openshift-origin[]
5459
serviceNetwork:
5560
- 172.30.0.0/16
5661
platform:

0 commit comments

Comments
 (0)