@@ -26,15 +26,15 @@ You can view the following pods and check their logs in namespaces:
2626|===
2727| Namespace | Pod | Description
2828
29- | rancher -turtles-system
29+ | cattle -turtles-system
3030| rancher-turtles-cluster-api-operator
3131| Manages the installation and lifecycle of Cluster API providers in the management cluster
3232
33- | rancher -turtles-system
33+ | cattle -turtles-system
3434| rancher-turtles-controller-manager
3535| Handles Rancher integration and manages the custom resources for Turtles
3636
37- | rancher -turtles-system
37+ | cattle -turtles-system
3838| caapf-controller-manager
3939| Controls the Cluster API Provider Framework for custom infrastructure providers
4040
@@ -70,7 +70,7 @@ One way to monitor logs from Cluster API controll plane pods by usuing `kubectl
7070
7171[source,bash]
7272----
73- kubectl logs -l control-plane=controller-manager -n rancher -turtles-system -f
73+ kubectl logs -l control-plane=controller-manager -n cattle -turtles-system -f
7474kubectl logs -l control-plane=controller-manager -n capi-system -f
7575kubectl logs -l control-plane=controller-manager -n rke2-bootstrap-system -f
7676kubectl logs -l control-plane=controller-manager -n rke2-control-plane-system -f
@@ -92,7 +92,7 @@ Then you can tail logs from all pods in real time.
9292
9393[source,bash]
9494----
95- kubectl stern . -n rancher -turtles-system -n rke2-bootstrap-system -n rke2-control-plane-system -n capi-system
95+ kubectl stern . -n cattle -turtles-system -n rke2-bootstrap-system -n rke2-control-plane-system -n capi-system
9696----
9797
9898or
@@ -222,7 +222,7 @@ For example:
222222[source,bash]
223223----
224224helm upgrade rancher-turtles turtles/rancher-turtles \
225- -n rancher -turtles-system \
225+ -n cattle -turtles-system \
226226 --reuse-values \
227227 --set "rancherTurtles.managerArguments={--insecure-skip-verify,-v=5}" \
228228 --set cluster-api-operator.logLevel=5
@@ -272,7 +272,7 @@ Usage via regular flags:
272272
273273[source,bash]
274274----
275- kubectl crust-gather collect --include-namespace rancher -turtles-system --include-namespace capi-* --include-namespace cattle* --include-namespace c-* --include-namespace=<any-capi-cluster-namespace> --kubeconfig=<KUBECONFIG>
275+ kubectl crust-gather collect --include-namespace cattle -turtles-system --include-namespace capi-* --include-namespace cattle* --include-namespace c-* --include-namespace=<any-capi-cluster-namespace> --kubeconfig=<KUBECONFIG>
276276----
277277
278278You can specify a file with secrets or environment variables with secrets strings to exclude.
@@ -329,7 +329,7 @@ Replace `capi-clusters` with the namespace where your clusters are deployed and
329329+
330330[source,bash]
331331----
332- helm uninstall -n rancher -turtles-system rancher-turtles
332+ helm uninstall -n cattle -turtles-system rancher-turtles
333333----
334334+
335335. Remove any webhook configurations that might have been created by CAPI providers:
@@ -351,7 +351,7 @@ kubectl delete mutatingwebhookconfigurations [webhook-name]
351351----
352352+
353353. Clean up any leftover namespaces and resources. The following namespaces may remain after uninstallation:
354- * rancher -turtles-system
354+ * cattle -turtles-system
355355 * rke2-bootstrap-system
356356 * rke2-control-plane-system
357357 * capi-system
@@ -363,12 +363,12 @@ To remove these namespaces:
363363[source,bash]
364364----
365365# First remove any finalizers that might be blocking deletion
366- for NS in rancher -turtles-system rke2-bootstrap-system rke2-control-plane-system capi-system capz-system capi-clusters; do
366+ for NS in cattle -turtles-system rke2-bootstrap-system rke2-control-plane-system capi-system capz-system capi-clusters; do
367367 kubectl get namespace $NS -o json | jq '.spec.finalizers = []' | kubectl replace --raw "/api/v1/namespaces/$NS/finalize" -f -
368368done
369369
370370# Then delete the namespaces
371- kubectl delete namespace rancher -turtles-system rke2-bootstrap-system rke2-control-plane-system capi-system capz-system capi-clusters
371+ kubectl delete namespace cattle -turtles-system rke2-bootstrap-system rke2-control-plane-system capi-system capz-system capi-clusters
372372----
373373+
374374. Finally, remove the CRDs related to Cluster API and Rancher Turtles:
0 commit comments