Helpful commands

Commands

This section describes some of the useful kubectl and helm commands used when running Aizen on Kubernetes

To list the current install of Aizen on Kubernetes clusters

  • To list installs in default namespace

    helm list
    
  • To list installs in specific namespace

    helm -n <NAMESPACE> list
    
  • To list installs in all namespaces

    helm list -A
    
  • Get all Aizen deployments

    kubectl get deployments -n aizen
    
  • Get all Aizen pods

    kubectl get pods -n aizen