2022-12-28 23:06:22 +00:00
|
|
|
#!/bin/bash
|
2023-01-06 04:21:47 +00:00
|
|
|
CHART_VERSION=43.2.1
|
2022-12-28 23:06:22 +00:00
|
|
|
|
|
|
|
helm repo add prometheus-community https://prometheus-community.github.io/helm-charts
|
|
|
|
helm repo update
|
|
|
|
helm upgrade --install \
|
|
|
|
prometheus \
|
2023-01-06 04:21:47 +00:00
|
|
|
prometheus-community/kube-prometheus-stack \
|
2022-12-28 23:06:22 +00:00
|
|
|
-n prometheus \
|
|
|
|
--version ${CHART_VERSION} \
|
|
|
|
--create-namespace \
|
|
|
|
--cleanup-on-fail
|