-
Notifications
You must be signed in to change notification settings - Fork 101
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 #7297 from stolostron/swope-move-content
move content for customer bug--content does not change.
- Loading branch information
Showing
8 changed files
with
111 additions
and
111 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
[#config-infra-node-mce] | ||
= Configuring infrastructure nodes for {mce-short} | ||
|
||
Configure your {ocp-short} cluster to contain infrastructure nodes to run approved {mce-short} management components. Running components on infrastructure nodes avoids allocating {ocp-short} subscription quota for the nodes that are running {mce-short} management components. | ||
|
||
After adding infrastructure nodes to your {ocp-short} cluster, follow the xref:./install_connected.adoc#installing-from-the-cli-mce[Installing from the {ocp-short} CLI] instructions and add the following configurations to the Operator Lifecycle Manager Subscription and `MultiClusterEngine` custom resource. | ||
|
||
[#config-infra-nodes-ocp] | ||
== Configuring infrastructure nodes to the {ocp-short} cluster | ||
|
||
Follow the procedures that are described in | ||
link:https://docs.redhat.com/documentation/en-us/openshift_container_platform/4.14/html/machine_management/creating-infrastructure-machinesets[Creating infrastructure machine sets] in the {ocp-short} documentation. Infrastructure nodes are configured with a Kubernetes `taints` and `labels` to keep non-management workloads from running on them. | ||
|
||
To be compatible with the infrastructure node enablement provided by | ||
{mce-short}, ensure your infrastructure nodes have the following `taints` and `labels` applied: | ||
|
||
[source,yaml] | ||
---- | ||
metadata: | ||
labels: | ||
node-role.kubernetes.io/infra: "" | ||
spec: | ||
taints: | ||
- effect: NoSchedule | ||
key: node-role.kubernetes.io/infra | ||
---- | ||
|
||
[#infra-olm-subscription] | ||
== Operator Lifecycle Manager subscription configuration | ||
|
||
Add the following additional configuration before applying the Operator Lifecycle Manager Subscription: | ||
|
||
[source,yaml] | ||
---- | ||
spec: | ||
config: | ||
nodeSelector: | ||
node-role.kubernetes.io/infra: "" | ||
tolerations: | ||
- key: node-role.kubernetes.io/infra | ||
effect: NoSchedule | ||
operator: Exists | ||
---- | ||
|
||
[#infra-mce-add-config] | ||
== MultiClusterEngine custom resource additional configuration | ||
|
||
Add the following additional configuration before applying the `MultiClusterEngine` custom resource: | ||
|
||
[source,yaml] | ||
---- | ||
spec: | ||
nodeSelector: | ||
node-role.kubernetes.io/infra: "" | ||
---- |
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
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,50 @@ | ||
[#config-infra-node-acm] | ||
= Configuring infrastructure nodes for {acm-short} | ||
|
||
Configure your {ocp-short} cluster to contain infrastructure nodes to run approved {acm-short} management components. Running components on infrastructure nodes avoids allocating {ocp-short} subscription quota for the nodes that are running {acm-short} management components. | ||
|
||
After adding infrastructure nodes to your {ocp-short} cluster, follow the xref:../install/install_connected.adoc#installing-from-the-cli[Installing from the {ocp-short} CLI] instructions and add configurations to the {olm} subscription and `MultiClusterHub` custom resource. | ||
|
||
[#config-infra-nodes-ocp] | ||
== Configuring infrastructure nodes to the {ocp-short} cluster | ||
|
||
Follow the procedures that are described in link:https://docs.redhat.com/documentation/en-us/openshift_container_platform/4.14/html/machine_management/creating-infrastructure-machinesets[Creating infrastructure machine sets] in the {ocp-short} documentation. Infrastructure nodes are configured with a Kubernetes `taints` and `labels` to keep non-management workloads from running on them. | ||
|
||
. To be compatible with the infrastructure node enablement provided by {acm-short}, ensure your infrastructure nodes have the following `taints` and `labels` applied: | ||
|
||
+ | ||
[source,yaml] | ||
---- | ||
metadata: | ||
labels: | ||
node-role.kubernetes.io/infra: "" | ||
spec: | ||
taints: | ||
- effect: NoSchedule | ||
key: node-role.kubernetes.io/infra | ||
---- | ||
|
||
. Add the following additional configuration before applying the {olm} Subscription: | ||
|
||
+ | ||
[source,yaml] | ||
---- | ||
spec: | ||
config: | ||
nodeSelector: | ||
node-role.kubernetes.io/infra: "" | ||
tolerations: | ||
- key: node-role.kubernetes.io/infra | ||
effect: NoSchedule | ||
operator: Exists | ||
---- | ||
|
||
. Add the following additional configuration before you apply the `MultiClusterHub` custom resource: | ||
|
||
+ | ||
[source,yaml] | ||
---- | ||
spec: | ||
nodeSelector: | ||
node-role.kubernetes.io/infra: "" | ||
---- |
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
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