Skip to content

Kubee App Chart

An app chart is a kubee chart that install/upgrade an application.

An app chart

  • create a helm chart dynamically with:
    • helm templating,
    • jsonnet
    • kustomize
  • and install/upgrade it

App Charts are therefore generated Helm Charts.

You:

They are installed with kubee helmet.

Once you have added or modified the app chart to your cluster values file, you can install or update it via the following command:

Terminal window
kubee --cluster cluster-name helmet play chart-name

Example for the kubernetes-dashboard chart

Terminal window
kubee --cluster cluster-name helmet play kubernetes-dashboard

Example:

  • Using helm to list all charts
Terminal window
helm list --all-namespaces
# Using kubee
kubee --cluster cluster-name helm list --all-namespaces
  • Using helm to list the charts of a namespace
Terminal window
helm list -n namespace
# Using kubee
kubee --cluster cluster-name helm list -n namespace

Using helm to delete a chart

Terminal window
helm uninstall -n namespace chart_name
# Using kubee
kubee --cluster cluster-name helm uninstall -n namespace chart_name