# Helpful Deployment Commands

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

* To list installations in the current namespace:

  <pre data-overflow="wrap"><code>helm list
  </code></pre>
* To list installations in a specific namespace:

  <pre data-overflow="wrap"><code>helm -n &#x3C;NAMESPACE> list
  </code></pre>
* To list installations in all the namespaces:

  <pre data-overflow="wrap"><code>helm list -A
  </code></pre>
* To get all the Aizen deployments:

  <pre data-overflow="wrap"><code>kubectl get deployments -n aizen
  </code></pre>
* To get all the Aizen pods:

  <pre data-overflow="wrap"><code>kubectl get pods -n aizen
  </code></pre>
