This repository hosts Helm charts for ui-vmm. These charts are used to deploy ui-vmm to Kubernetes.
In order to be able to use the charts in this repository, add the name and URL to your Helm client:
helm repo add ui-vmm https://ui-vmm.github.io/charts
helm repo update
For correct deployment of ui-vmm/ui-vmm
, see examples of charts/ui-vmm/values-files.yaml
Render charts:
# ui-vmm backend
helm template ui-vmm/ui-vmm -f charts/ui-vmm/values-files.yaml --set "global.ci_url=hello-world.info"
# ui-vmm frontend
helm template ui-vmm/ui-vmm-panel --set "global.ci_url=hello-world.info"
Deploy applications:
# ui-vmm backend
helm upgrade --install -n default ui-vmm ui-vmm/ui-vmm -f charts/ui-vmm/values-files.yaml --set "global.ci_url=hello-world.info"
# ui-vmm frontend
helm upgrade --install -n default ui-vmm-panel ui-vmm/ui-vmm-panel --set "global.ci_url=hello-world.info"