Skip to content

Commit ecad25a

Browse files
authored
Merge pull request #384 from yiannistri/turtls-ns-rename
docs: Rename `rancher-turtles-system` ns to `cattle-turtles-system` ns
2 parents 1facd35 + 0574e20 commit ecad25a

File tree

5 files changed

+18
-18
lines changed

5 files changed

+18
-18
lines changed

docs/next/modules/en/pages/operator/manual.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ Once the Helm repository has been added and updated locally, you can proceed to
4444
[source,bash]
4545
----
4646
helm install rancher-turtles turtles/rancher-turtles --version v0.24.0 \
47-
-n rancher-turtles-system \
47+
-n cattle-turtles-system \
4848
--dependency-update \
4949
--create-namespace --wait \
5050
--timeout 180s
@@ -78,7 +78,7 @@ apiVersion: v1
7878
kind: Secret
7979
metadata:
8080
name: variables
81-
namespace: rancher-turtles-system
81+
namespace: cattle-turtles-system
8282
type: Opaque
8383
stringData:
8484
CLUSTER_TOPOLOGY: "true"

docs/next/modules/en/pages/reference/clusterctlconfig.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ apiVersion: turtles-capi.cattle.io/v1alpha1
2222
kind: ClusterctlConfig
2323
metadata:
2424
name: clusterctl-config
25-
namespace: rancher-turtles-system
25+
namespace: cattle-turtles-system
2626
spec:
2727
providers:
2828
- name: metal3
@@ -68,7 +68,7 @@ apiVersion: turtles-capi.cattle.io/v1alpha1
6868
kind: ClusterctlConfig
6969
metadata:
7070
name: clusterctl-config
71-
namespace: rancher-turtles-system
71+
namespace: cattle-turtles-system
7272
spec:
7373
providers:
7474
- name: rke2

docs/next/modules/en/pages/troubleshooting/troubleshooting.adoc

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -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
7474
kubectl logs -l control-plane=controller-manager -n capi-system -f
7575
kubectl logs -l control-plane=controller-manager -n rke2-bootstrap-system -f
7676
kubectl 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

9898
or
@@ -222,7 +222,7 @@ For example:
222222
[source,bash]
223223
----
224224
helm 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

278278
You 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 -
368368
done
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:

docs/next/modules/en/pages/tutorials/quickstart.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -96,8 +96,8 @@ This will use the default values for the Helm chart, which are good for most ins
9696
The installation may take a few minutes and, when it finishes, you will be able to see the following new deployments in the cluster:
9797

9898
* `capi-system/capi-controller-manager`
99-
* `rancher-turtles-system/caapf-controller-manager`
100-
* `rancher-turtles-system/rancher-turtles-controller-manager`
99+
* `cattle-turtles-system/caapf-controller-manager`
100+
* `cattle-turtles-system/rancher-turtles-controller-manager`
101101
* `rke2-bootstrap-system/rke2-bootstrap-controller-manager`
102102
* `rke2-control-plane-system/rke2-control-plane-controller-manager`
103103

docs/next/modules/en/pages/tutorials/uninstall.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ To uninstall {product_name} use the following Helm command:
55

66
[source,bash]
77
----
8-
helm uninstall -n rancher-turtles-system rancher-turtles --cascade foreground --wait
8+
helm uninstall -n cattle-turtles-system rancher-turtles --cascade foreground --wait
99
----
1010

1111
This may take a few minutes to complete.

0 commit comments

Comments
 (0)