File tree Expand file tree Collapse file tree 3 files changed +38
-0
lines changed
scalability_and_performance Expand file tree Collapse file tree 3 files changed +38
-0
lines changed Original file line number Diff line number Diff line change @@ -1049,6 +1049,8 @@ Name: Scalability and performance
1049
1049
Dir : scalability_and_performance
1050
1050
Distros : openshift-origin,openshift-enterprise
1051
1051
Topics :
1052
+ - Name : Recommended installation practices
1053
+ File : recommended-install-practices
1052
1054
- Name : Recommended host practices
1053
1055
File : recommended-host-practices
1054
1056
- Name : Using the Node Tuning Operator
Original file line number Diff line number Diff line change
1
+ // Module included in the following assemblies:
2
+ //
3
+ // * scalability_and_performance/recommended-install-practices.adoc
4
+
5
+ [id="recommended-install-practices_{context}"]
6
+ = Recommended practices for installing large scale clusters
7
+
8
+ When installing large clusters or scaling the cluster to larger node counts,
9
+ set the cluster network `cidr` accordingly in your `install-config.yaml`
10
+ file before you install the cluster:
11
+
12
+ ----
13
+ networking:
14
+ clusterNetwork:
15
+ - cidr: 10.128.0.0/14
16
+ hostPrefix: 23
17
+ machineCIDR: 10.0.0.0/16
18
+ networkType: OpenShiftSDN
19
+ serviceNetwork:
20
+ - 172.30.0.0/16
21
+ ----
22
+
23
+ The default clusterNetwork cidr 10.128.0.0/14 cannot be used if the cluster size is more
24
+ than 500 nodes. It must be set to 10.128.0.0/12 or 10.128.0.0/10 to get to larger node
25
+ counts beyond 500 nodes.
Original file line number Diff line number Diff line change
1
+ [id="recommended-cluster-install-practices"]
2
+ = Recommended practices for installing large clusters
3
+ include::modules/common-attributes.adoc[]
4
+ :context: cluster-install
5
+
6
+ toc::[]
7
+
8
+ Apply the following practices when installing large clusters or scaling clusters
9
+ to larger node counts.
10
+
11
+ include::modules/recommended-install-practices.adoc[leveloffset=+1]
You can’t perform that action at this time.
0 commit comments