You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Either `OpenShiftSDN` or `OVNKubernetes`. The default value is `OVNKubernetes`.
286
+
endif::openshift-origin[]
287
+
ifndef::openshift-origin[]
288
+
Either `OpenShiftSDN` or `OVNKubernetes`. The default value is `OpenShiftSDN`.
289
+
endif::openshift-origin[]
290
+
|String
291
+
277
292
|`networking.clusterNetwork`
278
293
|The IP address pools for pods. The default is `10.128.0.0/14` with a host prefix of `/23`.
279
-
|Array of objects
294
+
|Array of objects. For example:
295
+
296
+
[source,yaml]
297
+
----
298
+
networking:
299
+
clusterNetworking:
300
+
- cidr: 10.128.0.0/14
301
+
hostPrefix: 23
302
+
----
280
303
281
304
|`networking.clusterNetwork.cidr`
282
305
|Required if you use `networking.clusterNetwork`. The IP block address pool.
283
-
|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`.
306
+
|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`.
284
307
285
308
|`networking.clusterNetwork.hostPrefix`
286
-
|Required if you use `networking.clusterNetwork`. The prefix size to allocate to each node from the CIDR. For example, 24 would allocate 2^8=256 addresses to each node.
309
+
|Required if you use `networking.clusterNetwork`. The prefix size to allocate to each node from the CIDR. For example, `24` would allocate `2^8=256` addresses to each node.
287
310
|Integer
288
311
312
+
|`networking.serviceNetwork`
313
+
|The IP address pools for services. The default is `172.30.0.0/16`.
314
+
|Array of IP networks. 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`.
315
+
289
316
|`networking.machineNetwork`
290
317
|The IP address pools for machines.
291
318
|Array of objects
292
319
293
320
|`networking.machineNetwork.cidr`
294
321
|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`.
295
-
|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`.
296
-
297
-
ifndef::openshift-origin[]
298
-
|`networking.networkType`
299
-
|The type of network to install. The default is `OpenShiftSDN`.
300
-
|String
301
-
endif::openshift-origin[]
302
-
303
-
ifdef::openshift-origin[]
304
-
|`networking.networkType`
305
-
|The type of network to install. The default is `OVNKubernetes`.
306
-
|String
307
-
endif::openshift-origin[]
308
-
309
-
|`networking.serviceNetwork`
310
-
|The IP address pools for services. The default is 172.30.0.0/16.
311
-
|Array of IP networks. 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`.
322
+
|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`.
312
323
313
324
|`publish`
314
325
|How to publish or expose the user-facing endpoints of your cluster, such as the Kubernetes API, OpenShift routes.
0 commit comments