Promyze
Let's see how to run Promyze in a Kubernetes cluster.
We'll use the official Helm chart (code, docs).
Configuration
Create the values.yaml file to override default parameters.
Deployment
Add Helm chart repository:
bash
helm repo add promyze https://promyze.github.io/helm-charts
helm repo updateInstall the application:
bash
helm upgrade --install promyze promyze/promyze -f values.yaml --namespace promyze --create-namespaceUninstall and clean the cluster:
bash
helm uninstall promyze -n promyze
kubectl delete ns promyze