k8s/helm/apps/goldpinger/install.sh

14 lines
286 B
Bash
Raw Normal View History

2022-12-28 23:06:22 +00:00
#!/bin/bash
CHART_VERSION=5.5.0
helm repo add okgolove https://okgolove.github.io/helm-charts
helm repo update
helm upgrade --install \
goldpinger \
okgolove/goldpinger \
-n goldpinger \
--version ${CHART_VERSION} \
--create-namespace \
--values values.yaml \
--cleanup-on-fail