File tree Expand file tree Collapse file tree 2 files changed +5
-3
lines changed
charts/kube-prometheus-stack Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ name: kube-prometheus-stack
21
21
sources :
22
22
- https://github.com/prometheus-community/helm-charts
23
23
- https://github.com/prometheus-operator/kube-prometheus
24
- version : 55.1.0
24
+ version : 55.1.1
25
25
appVersion : v0.70.0
26
26
kubeVersion : " >=1.19.0-0"
27
27
home : https://github.com/prometheus-operator/kube-prometheus
Original file line number Diff line number Diff line change 2
2
3
3
set -euo pipefail
4
4
5
- SCRIPT_DIR=$( cd -- " $( dirname -- " ${BASH_SOURCE[0]} " ) " & > /dev/null && pwd )
5
+ SCRIPT_DIR=$( cd -- " $( dirname -- " ${BASH_SOURCE[0]} " ) " & > /dev/null && pwd)
6
6
7
7
cd " ${SCRIPT_DIR} /../"
8
8
@@ -13,11 +13,13 @@ if ! git diff --exit-code; then
13
13
fi
14
14
15
15
python3 -m venv venv
16
+ # shellcheck disable=SC1091
16
17
source venv/bin/activate
17
18
pip3 install -r hack/requirements.txt
18
19
19
20
go install -a github.com/jsonnet-bundler/jsonnet-bundler/cmd/jb@latest
20
- export PATH=" $( go env GOPATH) /bin:$PATH "
21
+ PATH=" $( go env GOPATH) /bin:$PATH "
22
+ export PATH
21
23
22
24
./hack/sync_prometheus_rules.py
23
25
if ! git diff --exit-code; then
You can’t perform that action at this time.
0 commit comments