Kubee App Chart
An app chart is a kubee chart that install/upgrade an application.
Helm Wrapper
Section titled “Helm Wrapper”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:
- use any Helm command to manage them
- except for the installation and upgrade
Operation/Command
Section titled “Operation/Command”Installation / Upgrade
Section titled “Installation / Upgrade”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:
kubee --cluster cluster-name helmet play chart-nameExample for the kubernetes-dashboard chart
kubee --cluster cluster-name helmet play kubernetes-dashboardExample:
- Using helm to list all charts
helm list --all-namespaces# Using kubeekubee --cluster cluster-name helm list --all-namespaces- Using helm to list the charts of a namespace
helm list -n namespace# Using kubeekubee --cluster cluster-name helm list -n namespaceUninstall/Delete
Section titled “Uninstall/Delete”Using helm to delete a chart
helm uninstall -n namespace chart_name# Using kubeekubee --cluster cluster-name helm uninstall -n namespace chart_name