-
Notifications
You must be signed in to change notification settings - Fork 51
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add documentation to deploy RSCT (#111)
Signed-off-by: Pravin Dsilva <pravin.d-silva@ibm.com>
- Loading branch information
Pravin D Silva
authored
Mar 12, 2021
1 parent
c357b66
commit ec7252f
Showing
3 changed files
with
36 additions
and
1 deletion.
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,33 @@ | ||
Deploy RSCT/RMC on an OCP Cluster on PowerVM | ||
========= | ||
|
||
These instructions will help you deploy the RSCT/RMC daemonset on an OCP cluster running on PowerVM: | ||
|
||
**1. Setting up the inventory** | ||
|
||
Use the instructions provided [here](https://github.com/ocp-power-automation/ocp4-playbooks#setting-up-inventory) to setup the inventory for your cluster. For deploying RSCT, you would only need to set the bastion host details in the inventory. | ||
|
||
|
||
**2. Set up the variables** | ||
|
||
Make use of the sample file at examples/rmc_vars.yaml. | ||
|
||
``` | ||
cp examples/rmc_vars.yaml . | ||
``` | ||
|
||
**3. Run the playbook to deploy RSCT** | ||
|
||
The ocp-customization [module](https://github.com/ocp-power-automation/ocp4-playbooks/tree/master/playbooks/roles/ocp-customization) is used to deploy RSCT/RMC daemonset on the cluster. | ||
|
||
``` | ||
ansible-playbook -i inventory -e @rmc_vars.yaml playbooks/customization.yaml | ||
``` | ||
|
||
**4. Post deployment checks** | ||
|
||
After the playbook execution completes, the daemonset and pods should be available in the `powervm-rmc` namespace on the cluster. Run the following command to list them: | ||
|
||
``` | ||
oc get daemonset,pods -n powervm-rmc | ||
``` |
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,2 @@ | ||
--- | ||
powervm_rmc: true |
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