Skip to Content

Undeploy Your CAP Application from Kyma

This tutorial shows you how to undeploy your CAP application from Kyma.
You will learn
  • How to undeploy your CAP application from Kyma
manjuXManju ShankarDecember 6, 2022
  • Step 1
    1. Uninstall the CAP application:

      Shell/Bash
      Copy
      helm uninstall cpapp
      
    2. Delete the database secret:

      Shell/Bash
      Copy
      kubectl delete secret cpapp-db
      
    3. Delete the container registry secret:

      Shell/Bash
      Copy
      kubectl delete secret container-registry
      
    4. Delete the namespace:

      Shell/Bash
      Copy
      kubectl delete namespace  risk-management
      

    What's the command for deleting the database secret?

    Log in to complete tutorial
Back to top