diff --git a/src/cloud-api-adaptor/ibmcloud/ROKS_SETUP.md b/src/cloud-api-adaptor/ibmcloud/ROKS_SETUP.md index c5006f0af..6f43ab773 100644 --- a/src/cloud-api-adaptor/ibmcloud/ROKS_SETUP.md +++ b/src/cloud-api-adaptor/ibmcloud/ROKS_SETUP.md @@ -50,7 +50,7 @@ If you are using an existing cluster, you can skip this section and proceed to [ 1. Create a ROKS cluster ```bash - ibmcloud ks cluster create vpc-gen2 --flavor bx2.4x16 --name "$CLUSTER_NAME" --subnet-id "$SUBNET_ID" --vpc-id "$VPC_ID" --zone "$ZONE" --operating-system RHCOS --workers 2 --version 4.16.23_openshift --disable-outbound-traffic-protection --cos-instance "$COS_CRN" + ibmcloud ks cluster create vpc-gen2 --flavor bx2.4x16 --name "$CLUSTER_NAME" --subnet-id "$SUBNET_ID" --vpc-id "$VPC_ID" --zone "$ZONE" --operating-system RHCOS --workers 2 --version 4.17.12_openshift --disable-outbound-traffic-protection --cos-instance "$COS_CRN" ``` @@ -80,7 +80,7 @@ By default, your Red Hat OpenShift cluster will not work with the peer pod compo 1. Allow `cloud-api-adaptor` to update pod finalizers ```bash - kubectl apply -n default -f - < [!NOTE] +> Deleting the cluster might persist the podvm created by cloud-api-adaptor. Make sure to delete the Helloworld pod first. + +Otherwise: 1. To delete the Helloworld sample ```bash - kubectl delete -n default -f https://raw.githubusercontent.com/istio/istio/release-1.24/samples/curl/curl.yaml - kubectl delete -n default pod helloworld + oc delete -n default -f https://raw.githubusercontent.com/istio/istio/release-1.24/samples/curl/curl.yaml + oc delete -n default pod helloworld ``` -1. To uninstall the peer pod components +1. To uninstall the peer pod components ```bash pushd test/tools export CLOUD_PROVIDER=ibmcloud export TEST_PROVISION_FILE="$HOME/peerpods-cluster.properties" ./caa-provisioner-cli -action=uninstall - kubectl delete ns confidential-containers-system + oc delete ns confidential-containers-system popd ```