Skip to content

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 update

Install the application:

bash
helm upgrade --install promyze promyze/promyze -f values.yaml --namespace promyze --create-namespace

Uninstall and clean the cluster:

bash
helm uninstall promyze -n promyze
kubectl delete ns promyze