Uninstall

Remove the Dev SDK from your cluster.

Interactive uninstaller

bash · terminal
curl -fsSL https://charts.securelytix.tech/uninstall.sh | bash

Interactive uninstaller not yet available

Use the manual uninstall command below for now.

Manual uninstall

bash · terminal
1helm uninstall dev-sdk
2# Custom namespace: helm uninstall dev-sdk -n <namespace>

What gets removed

  • All SDK pods, deployments, and services
  • Bundled PostgreSQL pod and StatefulSet
  • ConfigMaps managed by Helm

What is preserved

  • External PostgreSQL data — your responsibility to clean up
  • Kubernetes Secrets (including securelytix-dockerhub) — delete manually if needed
  • PersistentVolumeClaims for bundled PostgreSQL — delete manually

Full cleanup

javascript · terminal
1helm uninstall dev-sdk
2kubectl delete pvc -l app.kubernetes.io/instance=dev-sdk
3kubectl delete secret securelytix-dockerhub

Was this page helpful?