Helpful Deployment Commands

These Helm and kubectl commands list the current installations of Aizen on Kubernetes clusters.

  • To list installations in the current namespace:

    helm list
  • To list installations in a specific namespace:

    helm -n <NAMESPACE> list
  • To list installations in all the namespaces:

    helm list -A
  • To get all the Aizen deployments:

    kubectl get deployments -n aizen
  • To get all the Aizen pods:

    kubectl get pods -n aizen

Last updated