Skip to content

Commit

Permalink
ci(deps): update monitoring dependencies
Browse files Browse the repository at this point in the history
| datasource | package               | from   | to     |
| ---------- | --------------------- | ------ | ------ |
| helm       | node-problem-detector | 2.3.10 | 2.3.11 |
| helm       | loki-distributed      | 0.74.1 | 0.76.0 |
| helm       | promtail              | 6.15.1 | 6.15.3 |
| helm       | kube-prometheus-stack | 51.0.2 | 52.1.0 |
  • Loading branch information
graphops-renovate[bot] committed Oct 26, 2023
1 parent 9d9bf1b commit 7768125
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions monitoring/helmfile.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ templates:
version: {{ .Values | get "kube-prometheus-stack" | get "chartVersion" }}
{{- end }}
{{- if (not (or ( .Values | get "kube-prometheus-stack" dict | get "chartVersion" false ) ( .Values | get "kube-prometheus-stack" dict | get "chartUrl" false ) )) }}
version: "51.0.2"
version: "52.1.0"
{{- end }}
node-problem-detector:
{{- if ( .Values | get "node-problem-detector" dict | get "chartUrl" false ) }}
Expand All @@ -155,7 +155,7 @@ templates:
version: {{ .Values | get "node-problem-detector" | get "chartVersion" }}
{{- end }}
{{- if (not (or ( .Values | get "node-problem-detector" dict | get "chartVersion" false ) ( .Values | get "node-problem-detector" dict | get "chartUrl" false ) )) }}
version: "2.3.10"
version: "2.3.11"
{{- end }}
loki:
{{- if ( .Values | get "loki" dict | get "chartUrl" false ) }}
Expand All @@ -169,7 +169,7 @@ templates:
version: {{ .Values | get "loki" | get "chartVersion" }}
{{- end }}
{{- if (not (or ( .Values | get "loki" dict | get "chartVersion" false ) ( .Values | get "loki" dict | get "chartUrl" false ) )) }}
version: "0.74.1"
version: "0.76.0"
{{- end }}
promtail:
{{- if ( .Values | get "promtail" dict | get "chartUrl" false ) }}
Expand All @@ -183,7 +183,7 @@ templates:
version: {{ .Values | get "promtail" | get "chartVersion" }}
{{- end }}
{{- if (not (or ( .Values | get "promtail" dict | get "chartVersion" false ) ( .Values | get "promtail" dict | get "chartUrl" false ) )) }}
version: "6.15.1"
version: "6.15.3"
{{- end }}
releases:
{{ if has "metrics" ( .Values | get "features" list ) }}
Expand Down
8 changes: 4 additions & 4 deletions src/schemas/monitoring.cue
Original file line number Diff line number Diff line change
Expand Up @@ -44,24 +44,24 @@ package LaunchpadNamespaces
chart: {_repositories["prometheus-community"].charts["kube-prometheus-stack"]}
feature: #features.#metrics
_template: {
version: "51.0.2"
version: "52.1.0"
disableValidationOnInstall: true
}
}
"node-problem-detector": {
chart: {_repositories.deliveryhero.charts["node-problem-detector"]}
feature: #features.#metrics
_template: {version: "2.3.10"}
_template: {version: "2.3.11"}
}
loki: {
chart: {_repositories.grafana.charts["loki-distributed"]}
feature: #features.#logs
_template: {version: "0.74.1"}
_template: {version: "0.76.0"}
}
promtail: {
chart: {_repositories.grafana.charts.promtail}
feature: #features.#logs
_template: {version: "6.15.1"}
_template: {version: "6.15.3"}
}
}

Expand Down

0 comments on commit 7768125

Please sign in to comment.