Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: prometheus-community/helm-charts
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: kube-prometheus-stack-70.0.1
Choose a base ref
...
head repository: prometheus-community/helm-charts
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: kube-prometheus-stack-70.0.2
Choose a head ref
  • 2 commits
  • 3 files changed
  • 2 contributors

Commits on Mar 16, 2025

  1. [CI] Update actions/create-github-app-token action to v1.11.6 (#5426)

    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    renovate[bot] authored Mar 16, 2025

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    9ce101e View commit details
  2. [kube-prometheus-stack] add renovate-post-upgrade-hook.sh (#5427)

    Signed-off-by: Jan-Otto Kröpke <mail@jkroepke.de>
    jkroepke authored Mar 16, 2025

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    4d6bbd6 View commit details
2 changes: 1 addition & 1 deletion .github/workflows/renovate-bump-chart-version.yaml
Original file line number Diff line number Diff line change
@@ -21,7 +21,7 @@ jobs:
# Used App:
# https://github.com/organizations/prometheus-community/settings/apps/helm-charts-renovate-helper.
# Ref: https://github.com/prometheus-community/helm-charts/issues/5213.
- uses: actions/create-github-app-token@v1
- uses: actions/create-github-app-token@21cfef2b496dd8ef5b904c159339626a10ad380e # v1.11.6
id: app-token
with:
app-id: 1179738
2 changes: 1 addition & 1 deletion charts/kube-prometheus-stack/Chart.yaml
Original file line number Diff line number Diff line change
@@ -31,7 +31,7 @@ name: kube-prometheus-stack
sources:
- https://github.com/prometheus-community/helm-charts
- https://github.com/prometheus-operator/kube-prometheus
version: 70.0.1
version: 70.0.2
appVersion: v0.81.0
kubeVersion: ">=1.19.0-0"
home: https://github.com/prometheus-operator/kube-prometheus
25 changes: 25 additions & 0 deletions charts/kube-prometheus-stack/hack/renovate-post-upgrade-hook.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
#!/usr/bin/env bash

set -euo pipefail

SCRIPT_DIR=$(cd -- "$(dirname -- "${0}")" &>/dev/null && pwd)

if ! which jb &>/dev/null; then
echo "'jb' command not found
Install jsonnet-bundler from https://github.com/jsonnet-bundler/jsonnet-bundler"
exit 1
fi

rm -rf "${SCRIPT_DIR}/tmp"
mkdir "${SCRIPT_DIR}/tmp"

export PIP_DISABLE_PIP_VERSION_CHECK=1

python3 -m venv "${SCRIPT_DIR}/tmp/venv"
# shellcheck disable=SC1091
source "${SCRIPT_DIR}/tmp/venv/bin/activate"

pip3 install -r "${SCRIPT_DIR}/requirements.txt"

"${SCRIPT_DIR}/sync_grafana_dashboards.py"
"${SCRIPT_DIR}/sync_prometheus_rules.py"