9 lines
287 B
Bash
9 lines
287 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
VERSION=12.8.0
|
||
|
|
||
|
rm -rf charts/kube-prometheus-stack
|
||
|
curl -L -s -o - https://github.com/prometheus-community/helm-charts/releases/download/kube-prometheus-stack-${VERSION}/kube-prometheus-stack-${VERSION}.tgz | tar xfz - -C charts
|
||
|
|
||
|
patch -p3 -i remove_etcd_grpc_alerts.patch
|