Skip to content

Commit

Permalink
Merge pull request openshift#19536 from chaitanyaenr/cidr
Browse files Browse the repository at this point in the history
Add recommendation for installing large clusters
  • Loading branch information
ahardin-rh authored Feb 11, 2020
2 parents 2d536ff + b4e0628 commit ab55d79
Show file tree
Hide file tree
Showing 3 changed files with 38 additions and 0 deletions.
2 changes: 2 additions & 0 deletions _topic_map.yml
Original file line number Diff line number Diff line change
Expand Up @@ -1050,6 +1050,8 @@ Name: Scalability and performance
Dir: scalability_and_performance
Distros: openshift-origin,openshift-enterprise
Topics:
- Name: Recommended installation practices
File: recommended-install-practices
- Name: Recommended host practices
File: recommended-host-practices
- Name: Recommended cluster scaling practices
Expand Down
25 changes: 25 additions & 0 deletions modules/recommended-install-practices.adoc
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 scalability_and_performance/recommended-install-practices.adoc
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]

0 comments on commit ab55d79

Please sign in to comment.