Skip to content

Commit 01bc56f

Browse files
authored
Merge branch 'main' into kps_refactor_extraobjects
Signed-off-by: Jan-Otto Kröpke <[email protected]>
2 parents e611e0d + ed7cf08 commit 01bc56f

File tree

97 files changed

+615
-148
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

97 files changed

+615
-148
lines changed

Diff for: .github/workflows/lint-test.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
with:
2020
version: v3.12.0
2121

22-
- uses: actions/setup-python@42375524e23c412d93fb67b49958b491fce71c38 # v5.4.0
22+
- uses: actions/setup-python@8d9ed9ac5c53483de85588cdf95a591a75ab9f55 # v5.5.0
2323
with:
2424
python-version: '3.13'
2525

Diff for: .github/workflows/renovate-bump-chart-version.yaml renamed to .github/workflows/renovate-custom-hooks.yaml

+49-37
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Renovate Bump Chart Version
1+
name: renovate hooks
22

33
on:
44
pull_request:
@@ -8,7 +8,7 @@ on:
88
- 'charts/**/*'
99

1010
jobs:
11-
renovate-bump-chart-version:
11+
renovate-post-run:
1212
name: Renovate Bump Chart Version
1313
runs-on: ubuntu-latest
1414
if: github.actor == 'renovate[bot]'
@@ -21,13 +21,13 @@ jobs:
2121
# Used App:
2222
# https://github.com/organizations/prometheus-community/settings/apps/helm-charts-renovate-helper.
2323
# Ref: https://github.com/prometheus-community/helm-charts/issues/5213.
24-
- uses: actions/create-github-app-token@af35edadc00be37caa72ed9f3e6d5f7801bfdf09 # v1.11.7
24+
- uses: actions/create-github-app-token@d72941d797fd3113feb6b93fd0dec494b13a2547 # v1.12.0
2525
id: app-token
2626
with:
2727
app-id: 1179738
2828
private-key: ${{ secrets.APP_RENOVATE_HELPER_PRIVATE_KEY }}
2929

30-
- uses: actions/setup-python@42375524e23c412d93fb67b49958b491fce71c38 # v5.4.0
30+
- uses: actions/setup-python@8d9ed9ac5c53483de85588cdf95a591a75ab9f55 # v5.5.0
3131
with:
3232
python-version: '3.13'
3333

@@ -89,49 +89,61 @@ jobs:
8989
9090
# Fetch added/modified files in the target directory
9191
MODIFIED_FILES=$(git diff --diff-filter=ACM --name-only HEAD -- "$TARGET_DIR")
92-
93-
# Initialize JSON structure
94-
FILE_CHANGES_JSON='{ "deletions": [], "additions": [] }'
92+
93+
# Create a temporary file for JSON output
94+
FILE_CHANGES_JSON_FILE=$(mktemp)
95+
96+
# Initialize JSON structure in the file
97+
echo '{ "deletions": [], "additions": [] }' > "$FILE_CHANGES_JSON_FILE"
9598
9699
# Add deletions
97100
for file in $DELETED_FILES; do
98-
FILE_CHANGES_JSON=$(echo "$FILE_CHANGES_JSON" | jq --arg path "$file" '.deletions += [{"path": $path}]')
101+
jq --arg path "$file" '.deletions += [{"path": $path}]' "$FILE_CHANGES_JSON_FILE" > "$FILE_CHANGES_JSON_FILE.tmp"
102+
mv "$FILE_CHANGES_JSON_FILE.tmp" "$FILE_CHANGES_JSON_FILE"
99103
done
100104
101105
# Add additions (new or modified files)
102106
for file in $MODIFIED_FILES; do
103-
BASE64_CONTENT=$(base64 -w 0 <"$file")
104-
FILE_CHANGES_JSON=$(echo "$FILE_CHANGES_JSON" | jq --arg path "$file" --arg content "$BASE64_CONTENT" '.additions += [{"path": $path, "contents": $content}]')
107+
BASE64_CONTENT=$(base64 -w 0 <"$file") # Encode file content
108+
jq --arg path "$file" --arg content "$BASE64_CONTENT" \
109+
'.additions += [{"path": $path, "contents": $content}]' "$FILE_CHANGES_JSON_FILE" > "$FILE_CHANGES_JSON_FILE.tmp"
110+
mv "$FILE_CHANGES_JSON_FILE.tmp" "$FILE_CHANGES_JSON_FILE"
105111
done
106112
107-
# Construct final JSON using jq
108-
JSON_PAYLOAD=$(jq -n --arg repo "$GITHUB_REPOSITORY" \
109-
--arg branch "$GITHUB_HEAD_REF" \
110-
--arg message "post upgrade changes from renovate" \
111-
--arg expectedOid "$GITHUB_SHA" \
112-
--argjson fileChanges "$FILE_CHANGES_JSON" \
113-
'{
114-
query: "mutation ($input: CreateCommitOnBranchInput!) {
115-
createCommitOnBranch(input: $input) {
116-
commit {
117-
url
118-
}
119-
}
120-
}",
121-
variables: {
122-
input: {
123-
branch: {
124-
repositoryNameWithOwner: $repo,
125-
branchName: $branch
126-
},
127-
message: { headline: $message },
128-
fileChanges: $fileChanges,
129-
expectedHeadOid: $expectedOid
130-
}
131-
}
132-
}')
113+
# Create a temporary file for the final JSON payload
114+
JSON_PAYLOAD_FILE=$(mktemp)
115+
116+
# Construct the final JSON using jq and store it in a file
117+
jq -n --arg repo "$GITHUB_REPOSITORY" \
118+
--arg branch "$GITHUB_HEAD_REF" \
119+
--arg message "post upgrade changes from renovate" \
120+
--arg expectedOid "$GITHUB_SHA" \
121+
--slurpfile fileChanges "$FILE_CHANGES_JSON_FILE" \
122+
'{
123+
query: "mutation ($input: CreateCommitOnBranchInput!) {
124+
createCommitOnBranch(input: $input) {
125+
commit {
126+
url
127+
}
128+
}
129+
}",
130+
variables: {
131+
input: {
132+
branch: {
133+
repositoryNameWithOwner: $repo,
134+
branchName: $branch
135+
},
136+
message: { headline: $message },
137+
fileChanges: $fileChanges[0],
138+
expectedHeadOid: $expectedOid
139+
}
140+
}
141+
}' > "$JSON_PAYLOAD_FILE"
133142
134143
# Call GitHub API
135144
curl https://api.github.com/graphql -f \
136145
-sSf -H "Authorization: Bearer $GITHUB_TOKEN" \
137-
--data "$JSON_PAYLOAD"
146+
--data "@$JSON_PAYLOAD_FILE"
147+
148+
# Clean up temporary files
149+
rm "$FILE_CHANGES_JSON_FILE" "$JSON_PAYLOAD_FILE"

Diff for: charts/kube-prometheus-stack/Chart.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ name: kube-prometheus-stack
3131
sources:
3232
- https://github.com/prometheus-community/helm-charts
3333
- https://github.com/prometheus-operator/kube-prometheus
34-
version: 70.4.0
34+
version: 70.5.0
3535
appVersion: v0.81.0
3636
kubeVersion: ">=1.19.0-0"
3737
home: https://github.com/prometheus-operator/kube-prometheus
@@ -62,7 +62,7 @@ dependencies:
6262
repository: https://prometheus-community.github.io/helm-charts
6363
condition: nodeExporter.enabled
6464
- name: grafana
65-
version: "8.10.*"
65+
version: "8.11.*"
6666
repository: https://grafana.github.io/helm-charts
6767
condition: grafana.enabled
6868
- name: prometheus-windows-exporter

Diff for: charts/kube-prometheus-stack/hack/sync_grafana_dashboards.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -29,11 +29,11 @@ def new_representer(dumper, data):
2929

3030
refs = {
3131
# renovate: git-refs=https://github.com/prometheus-operator/kube-prometheus branch=main
32-
'ref.kube-prometheus': 'baf3c7a71ec9f889644231f677f8708791d38293',
32+
'ref.kube-prometheus': '685008710cbb881cd8fce9db1e2f890c9e249903',
3333
# renovate: git-refs=https://github.com/kubernetes-monitoring/kubernetes-mixin branch=master
34-
'ref.kubernetes-mixin': 'ae04f1155d55ebb2183918d59fdd7758f6167e86',
34+
'ref.kubernetes-mixin': '834daaa30905d5832c68b7ef8ab41fbedcd9dd4b',
3535
# renovate: git-refs=https://github.com/etcd-io/etcd branch=main
36-
'ref.etcd': 'dc45df0cad19a9ef47db453bb532405a3e4e5c27',
36+
'ref.etcd': '7351ab86c054aad7d31d6639b2e841f2c37cd296',
3737
}
3838

3939
# Source files list

Diff for: charts/kube-prometheus-stack/hack/sync_prometheus_rules.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -29,11 +29,11 @@ def new_representer(dumper, data):
2929

3030
refs = {
3131
# renovate: git-refs=https://github.com/prometheus-operator/kube-prometheus branch=main
32-
'ref.kube-prometheus': 'baf3c7a71ec9f889644231f677f8708791d38293',
32+
'ref.kube-prometheus': '685008710cbb881cd8fce9db1e2f890c9e249903',
3333
# renovate: git-refs=https://github.com/kubernetes-monitoring/kubernetes-mixin branch=master
34-
'ref.kubernetes-mixin': 'ae04f1155d55ebb2183918d59fdd7758f6167e86',
34+
'ref.kubernetes-mixin': '834daaa30905d5832c68b7ef8ab41fbedcd9dd4b',
3535
# renovate: git-refs=https://github.com/etcd-io/etcd branch=main
36-
'ref.etcd': 'dc45df0cad19a9ef47db453bb532405a3e4e5c27',
36+
'ref.etcd': '7351ab86c054aad7d31d6639b2e841f2c37cd296',
3737
}
3838

3939
# Source files list

Diff for: charts/kube-prometheus-stack/templates/grafana/dashboards-1.14/alertmanager-overview.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{{- /*
2-
Generated from 'alertmanager-overview' from https://raw.githubusercontent.com/prometheus-operator/kube-prometheus/baf3c7a71ec9f889644231f677f8708791d38293/manifests/grafana-dashboardDefinitions.yaml
2+
Generated from 'alertmanager-overview' from https://raw.githubusercontent.com/prometheus-operator/kube-prometheus/685008710cbb881cd8fce9db1e2f890c9e249903/manifests/grafana-dashboardDefinitions.yaml
33
Do not change in-place! In order to change this file first read following link:
44
https://github.com/prometheus-community/helm-charts/tree/main/charts/kube-prometheus-stack/hack
55
*/ -}}

Diff for: charts/kube-prometheus-stack/templates/grafana/dashboards-1.14/apiserver.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{{- /*
2-
Generated from 'apiserver' from https://raw.githubusercontent.com/prometheus-operator/kube-prometheus/baf3c7a71ec9f889644231f677f8708791d38293/manifests/grafana-dashboardDefinitions.yaml
2+
Generated from 'apiserver' from https://raw.githubusercontent.com/prometheus-operator/kube-prometheus/685008710cbb881cd8fce9db1e2f890c9e249903/manifests/grafana-dashboardDefinitions.yaml
33
Do not change in-place! In order to change this file first read following link:
44
https://github.com/prometheus-community/helm-charts/tree/main/charts/kube-prometheus-stack/hack
55
*/ -}}

Diff for: charts/kube-prometheus-stack/templates/grafana/dashboards-1.14/cluster-total.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{{- /*
2-
Generated from 'cluster-total' from https://raw.githubusercontent.com/prometheus-operator/kube-prometheus/baf3c7a71ec9f889644231f677f8708791d38293/manifests/grafana-dashboardDefinitions.yaml
2+
Generated from 'cluster-total' from https://raw.githubusercontent.com/prometheus-operator/kube-prometheus/685008710cbb881cd8fce9db1e2f890c9e249903/manifests/grafana-dashboardDefinitions.yaml
33
Do not change in-place! In order to change this file first read following link:
44
https://github.com/prometheus-community/helm-charts/tree/main/charts/kube-prometheus-stack/hack
55
*/ -}}

Diff for: charts/kube-prometheus-stack/templates/grafana/dashboards-1.14/controller-manager.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{{- /*
2-
Generated from 'controller-manager' from https://raw.githubusercontent.com/prometheus-operator/kube-prometheus/baf3c7a71ec9f889644231f677f8708791d38293/manifests/grafana-dashboardDefinitions.yaml
2+
Generated from 'controller-manager' from https://raw.githubusercontent.com/prometheus-operator/kube-prometheus/685008710cbb881cd8fce9db1e2f890c9e249903/manifests/grafana-dashboardDefinitions.yaml
33
Do not change in-place! In order to change this file first read following link:
44
https://github.com/prometheus-community/helm-charts/tree/main/charts/kube-prometheus-stack/hack
55
*/ -}}

Diff for: charts/kube-prometheus-stack/templates/grafana/dashboards-1.14/grafana-overview.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{{- /*
2-
Generated from 'grafana-overview' from https://raw.githubusercontent.com/prometheus-operator/kube-prometheus/baf3c7a71ec9f889644231f677f8708791d38293/manifests/grafana-dashboardDefinitions.yaml
2+
Generated from 'grafana-overview' from https://raw.githubusercontent.com/prometheus-operator/kube-prometheus/685008710cbb881cd8fce9db1e2f890c9e249903/manifests/grafana-dashboardDefinitions.yaml
33
Do not change in-place! In order to change this file first read following link:
44
https://github.com/prometheus-community/helm-charts/tree/main/charts/kube-prometheus-stack/hack
55
*/ -}}

Diff for: charts/kube-prometheus-stack/templates/grafana/dashboards-1.14/k8s-resources-cluster.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{{- /*
2-
Generated from 'k8s-resources-cluster' from https://raw.githubusercontent.com/prometheus-operator/kube-prometheus/baf3c7a71ec9f889644231f677f8708791d38293/manifests/grafana-dashboardDefinitions.yaml
2+
Generated from 'k8s-resources-cluster' from https://raw.githubusercontent.com/prometheus-operator/kube-prometheus/685008710cbb881cd8fce9db1e2f890c9e249903/manifests/grafana-dashboardDefinitions.yaml
33
Do not change in-place! In order to change this file first read following link:
44
https://github.com/prometheus-community/helm-charts/tree/main/charts/kube-prometheus-stack/hack
55
*/ -}}

Diff for: charts/kube-prometheus-stack/templates/grafana/dashboards-1.14/k8s-resources-multicluster.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{{- /*
2-
Generated from 'k8s-resources-multicluster' from https://raw.githubusercontent.com/prometheus-operator/kube-prometheus/baf3c7a71ec9f889644231f677f8708791d38293/manifests/grafana-dashboardDefinitions.yaml
2+
Generated from 'k8s-resources-multicluster' from https://raw.githubusercontent.com/prometheus-operator/kube-prometheus/685008710cbb881cd8fce9db1e2f890c9e249903/manifests/grafana-dashboardDefinitions.yaml
33
Do not change in-place! In order to change this file first read following link:
44
https://github.com/prometheus-community/helm-charts/tree/main/charts/kube-prometheus-stack/hack
55
*/ -}}

Diff for: charts/kube-prometheus-stack/templates/grafana/dashboards-1.14/k8s-resources-namespace.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{{- /*
2-
Generated from 'k8s-resources-namespace' from https://raw.githubusercontent.com/prometheus-operator/kube-prometheus/baf3c7a71ec9f889644231f677f8708791d38293/manifests/grafana-dashboardDefinitions.yaml
2+
Generated from 'k8s-resources-namespace' from https://raw.githubusercontent.com/prometheus-operator/kube-prometheus/685008710cbb881cd8fce9db1e2f890c9e249903/manifests/grafana-dashboardDefinitions.yaml
33
Do not change in-place! In order to change this file first read following link:
44
https://github.com/prometheus-community/helm-charts/tree/main/charts/kube-prometheus-stack/hack
55
*/ -}}

Diff for: charts/kube-prometheus-stack/templates/grafana/dashboards-1.14/k8s-resources-node.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{{- /*
2-
Generated from 'k8s-resources-node' from https://raw.githubusercontent.com/prometheus-operator/kube-prometheus/baf3c7a71ec9f889644231f677f8708791d38293/manifests/grafana-dashboardDefinitions.yaml
2+
Generated from 'k8s-resources-node' from https://raw.githubusercontent.com/prometheus-operator/kube-prometheus/685008710cbb881cd8fce9db1e2f890c9e249903/manifests/grafana-dashboardDefinitions.yaml
33
Do not change in-place! In order to change this file first read following link:
44
https://github.com/prometheus-community/helm-charts/tree/main/charts/kube-prometheus-stack/hack
55
*/ -}}

Diff for: charts/kube-prometheus-stack/templates/grafana/dashboards-1.14/k8s-resources-pod.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{{- /*
2-
Generated from 'k8s-resources-pod' from https://raw.githubusercontent.com/prometheus-operator/kube-prometheus/baf3c7a71ec9f889644231f677f8708791d38293/manifests/grafana-dashboardDefinitions.yaml
2+
Generated from 'k8s-resources-pod' from https://raw.githubusercontent.com/prometheus-operator/kube-prometheus/685008710cbb881cd8fce9db1e2f890c9e249903/manifests/grafana-dashboardDefinitions.yaml
33
Do not change in-place! In order to change this file first read following link:
44
https://github.com/prometheus-community/helm-charts/tree/main/charts/kube-prometheus-stack/hack
55
*/ -}}

Diff for: charts/kube-prometheus-stack/templates/grafana/dashboards-1.14/k8s-resources-workload.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{{- /*
2-
Generated from 'k8s-resources-workload' from https://raw.githubusercontent.com/prometheus-operator/kube-prometheus/baf3c7a71ec9f889644231f677f8708791d38293/manifests/grafana-dashboardDefinitions.yaml
2+
Generated from 'k8s-resources-workload' from https://raw.githubusercontent.com/prometheus-operator/kube-prometheus/685008710cbb881cd8fce9db1e2f890c9e249903/manifests/grafana-dashboardDefinitions.yaml
33
Do not change in-place! In order to change this file first read following link:
44
https://github.com/prometheus-community/helm-charts/tree/main/charts/kube-prometheus-stack/hack
55
*/ -}}

Diff for: charts/kube-prometheus-stack/templates/grafana/dashboards-1.14/k8s-resources-workloads-namespace.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{{- /*
2-
Generated from 'k8s-resources-workloads-namespace' from https://raw.githubusercontent.com/prometheus-operator/kube-prometheus/baf3c7a71ec9f889644231f677f8708791d38293/manifests/grafana-dashboardDefinitions.yaml
2+
Generated from 'k8s-resources-workloads-namespace' from https://raw.githubusercontent.com/prometheus-operator/kube-prometheus/685008710cbb881cd8fce9db1e2f890c9e249903/manifests/grafana-dashboardDefinitions.yaml
33
Do not change in-place! In order to change this file first read following link:
44
https://github.com/prometheus-community/helm-charts/tree/main/charts/kube-prometheus-stack/hack
55
*/ -}}

Diff for: charts/kube-prometheus-stack/templates/grafana/dashboards-1.14/kubelet.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{{- /*
2-
Generated from 'kubelet' from https://raw.githubusercontent.com/prometheus-operator/kube-prometheus/baf3c7a71ec9f889644231f677f8708791d38293/manifests/grafana-dashboardDefinitions.yaml
2+
Generated from 'kubelet' from https://raw.githubusercontent.com/prometheus-operator/kube-prometheus/685008710cbb881cd8fce9db1e2f890c9e249903/manifests/grafana-dashboardDefinitions.yaml
33
Do not change in-place! In order to change this file first read following link:
44
https://github.com/prometheus-community/helm-charts/tree/main/charts/kube-prometheus-stack/hack
55
*/ -}}

Diff for: charts/kube-prometheus-stack/templates/grafana/dashboards-1.14/namespace-by-pod.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{{- /*
2-
Generated from 'namespace-by-pod' from https://raw.githubusercontent.com/prometheus-operator/kube-prometheus/baf3c7a71ec9f889644231f677f8708791d38293/manifests/grafana-dashboardDefinitions.yaml
2+
Generated from 'namespace-by-pod' from https://raw.githubusercontent.com/prometheus-operator/kube-prometheus/685008710cbb881cd8fce9db1e2f890c9e249903/manifests/grafana-dashboardDefinitions.yaml
33
Do not change in-place! In order to change this file first read following link:
44
https://github.com/prometheus-community/helm-charts/tree/main/charts/kube-prometheus-stack/hack
55
*/ -}}

Diff for: charts/kube-prometheus-stack/templates/grafana/dashboards-1.14/namespace-by-workload.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{{- /*
2-
Generated from 'namespace-by-workload' from https://raw.githubusercontent.com/prometheus-operator/kube-prometheus/baf3c7a71ec9f889644231f677f8708791d38293/manifests/grafana-dashboardDefinitions.yaml
2+
Generated from 'namespace-by-workload' from https://raw.githubusercontent.com/prometheus-operator/kube-prometheus/685008710cbb881cd8fce9db1e2f890c9e249903/manifests/grafana-dashboardDefinitions.yaml
33
Do not change in-place! In order to change this file first read following link:
44
https://github.com/prometheus-community/helm-charts/tree/main/charts/kube-prometheus-stack/hack
55
*/ -}}

Diff for: charts/kube-prometheus-stack/templates/grafana/dashboards-1.14/node-cluster-rsrc-use.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{{- /*
2-
Generated from 'node-cluster-rsrc-use' from https://raw.githubusercontent.com/prometheus-operator/kube-prometheus/baf3c7a71ec9f889644231f677f8708791d38293/manifests/grafana-dashboardDefinitions.yaml
2+
Generated from 'node-cluster-rsrc-use' from https://raw.githubusercontent.com/prometheus-operator/kube-prometheus/685008710cbb881cd8fce9db1e2f890c9e249903/manifests/grafana-dashboardDefinitions.yaml
33
Do not change in-place! In order to change this file first read following link:
44
https://github.com/prometheus-community/helm-charts/tree/main/charts/kube-prometheus-stack/hack
55
*/ -}}

Diff for: charts/kube-prometheus-stack/templates/grafana/dashboards-1.14/node-rsrc-use.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{{- /*
2-
Generated from 'node-rsrc-use' from https://raw.githubusercontent.com/prometheus-operator/kube-prometheus/baf3c7a71ec9f889644231f677f8708791d38293/manifests/grafana-dashboardDefinitions.yaml
2+
Generated from 'node-rsrc-use' from https://raw.githubusercontent.com/prometheus-operator/kube-prometheus/685008710cbb881cd8fce9db1e2f890c9e249903/manifests/grafana-dashboardDefinitions.yaml
33
Do not change in-place! In order to change this file first read following link:
44
https://github.com/prometheus-community/helm-charts/tree/main/charts/kube-prometheus-stack/hack
55
*/ -}}

Diff for: charts/kube-prometheus-stack/templates/grafana/dashboards-1.14/nodes-aix.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{{- /*
2-
Generated from 'nodes-aix' from https://raw.githubusercontent.com/prometheus-operator/kube-prometheus/baf3c7a71ec9f889644231f677f8708791d38293/manifests/grafana-dashboardDefinitions.yaml
2+
Generated from 'nodes-aix' from https://raw.githubusercontent.com/prometheus-operator/kube-prometheus/685008710cbb881cd8fce9db1e2f890c9e249903/manifests/grafana-dashboardDefinitions.yaml
33
Do not change in-place! In order to change this file first read following link:
44
https://github.com/prometheus-community/helm-charts/tree/main/charts/kube-prometheus-stack/hack
55
*/ -}}

Diff for: charts/kube-prometheus-stack/templates/grafana/dashboards-1.14/nodes-darwin.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{{- /*
2-
Generated from 'nodes-darwin' from https://raw.githubusercontent.com/prometheus-operator/kube-prometheus/baf3c7a71ec9f889644231f677f8708791d38293/manifests/grafana-dashboardDefinitions.yaml
2+
Generated from 'nodes-darwin' from https://raw.githubusercontent.com/prometheus-operator/kube-prometheus/685008710cbb881cd8fce9db1e2f890c9e249903/manifests/grafana-dashboardDefinitions.yaml
33
Do not change in-place! In order to change this file first read following link:
44
https://github.com/prometheus-community/helm-charts/tree/main/charts/kube-prometheus-stack/hack
55
*/ -}}

Diff for: charts/kube-prometheus-stack/templates/grafana/dashboards-1.14/nodes.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{{- /*
2-
Generated from 'nodes' from https://raw.githubusercontent.com/prometheus-operator/kube-prometheus/baf3c7a71ec9f889644231f677f8708791d38293/manifests/grafana-dashboardDefinitions.yaml
2+
Generated from 'nodes' from https://raw.githubusercontent.com/prometheus-operator/kube-prometheus/685008710cbb881cd8fce9db1e2f890c9e249903/manifests/grafana-dashboardDefinitions.yaml
33
Do not change in-place! In order to change this file first read following link:
44
https://github.com/prometheus-community/helm-charts/tree/main/charts/kube-prometheus-stack/hack
55
*/ -}}

0 commit comments

Comments
 (0)