Skip to content

Commit a1c2256

Browse files
[kube-prometheus-stack] Shellcheck linter file (#4073)
* [kube-prometheus-stack] Shellcheck linter file Signed-off-by: Gabriel Martinez <[email protected]> * bump chart Signed-off-by: Gabriel Martinez <[email protected]> --------- Signed-off-by: Gabriel Martinez <[email protected]>
1 parent b26081b commit a1c2256

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

charts/kube-prometheus-stack/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ name: kube-prometheus-stack
2121
sources:
2222
- https://github.com/prometheus-community/helm-charts
2323
- https://github.com/prometheus-operator/kube-prometheus
24-
version: 55.1.0
24+
version: 55.1.1
2525
appVersion: v0.70.0
2626
kubeVersion: ">=1.19.0-0"
2727
home: https://github.com/prometheus-operator/kube-prometheus

charts/kube-prometheus-stack/ci/lint.sh

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
set -euo pipefail
44

5-
SCRIPT_DIR=$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )
5+
SCRIPT_DIR=$(cd -- "$(dirname -- "${BASH_SOURCE[0]}")" &>/dev/null && pwd)
66

77
cd "${SCRIPT_DIR}/../"
88

@@ -13,11 +13,13 @@ if ! git diff --exit-code; then
1313
fi
1414

1515
python3 -m venv venv
16+
# shellcheck disable=SC1091
1617
source venv/bin/activate
1718
pip3 install -r hack/requirements.txt
1819

1920
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
2123

2224
./hack/sync_prometheus_rules.py
2325
if ! git diff --exit-code; then

0 commit comments

Comments
 (0)