forked from openshift/openshift-docs
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request openshift#19536 from chaitanyaenr/cidr
Add recommendation for installing large clusters
- Loading branch information
Showing
3 changed files
with
38 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
// Module included in the following assemblies: | ||
// | ||
// * scalability_and_performance/recommended-install-practices.adoc | ||
|
||
[id="recommended-install-practices_{context}"] | ||
= Recommended practices for installing large scale clusters | ||
|
||
When installing large clusters or scaling the cluster to larger node counts, | ||
set the cluster network `cidr` accordingly in your `install-config.yaml` | ||
file before you install the cluster: | ||
|
||
---- | ||
networking: | ||
clusterNetwork: | ||
- cidr: 10.128.0.0/14 | ||
hostPrefix: 23 | ||
machineCIDR: 10.0.0.0/16 | ||
networkType: OpenShiftSDN | ||
serviceNetwork: | ||
- 172.30.0.0/16 | ||
---- | ||
|
||
The default clusterNetwork cidr 10.128.0.0/14 cannot be used if the cluster size is more | ||
than 500 nodes. It must be set to 10.128.0.0/12 or 10.128.0.0/10 to get to larger node | ||
counts beyond 500 nodes. |
11 changes: 11 additions & 0 deletions
11
scalability_and_performance/recommended-install-practices.adoc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
[id="recommended-cluster-install-practices"] | ||
= Recommended practices for installing large clusters | ||
include::modules/common-attributes.adoc[] | ||
:context: cluster-install | ||
|
||
toc::[] | ||
|
||
Apply the following practices when installing large clusters or scaling clusters | ||
to larger node counts. | ||
|
||
include::modules/recommended-install-practices.adoc[leveloffset=+1] |