Uninstall Rancher Turtles
This gives an overview of Rancher Turtles uninstallation process.
When installing Rancher Turtles in your Rancher environment, by default, Rancher Turtles enables the Cluster API Operator cleanup. This includes cleaning up Cluster API Operator specific webhooks and deployments that otherwise cause issues with Rancher provisioning. To simplify uninstalling Rancher Turtles (via Rancher Manager or helm command), the official Rancher Turtles Helm chart includes a
|
To uninstall the Rancher Turtles Extension use the following helm command:
helm uninstall -n rancher-turtles-system rancher-turtles --cascade foreground --wait
This may take a few minutes to complete.
Remember that, if you use a different name for the installation or a different namespace, you may need to customize the command for your specific configuration. |
Once uninstalled, Rancher’s embedded-cluster-api
feature must be re-enabled:
-
Create a
feature.yaml
file, withembedded-cluster-api
set to true:feature.yamlapiVersion: management.cattle.io/v3 kind: Feature metadata: name: embedded-cluster-api spec: value: true
-
Use
kubectl
to apply thefeature.yaml
file to the cluster:kubectl apply -f feature.yaml