mirror of
https://github.com/bitnami/charts.git
synced 2026-02-10 20:17:22 +08:00
[bitnami/grafana-alloy] fix quote prometheus.io/port annotation to avoid decoding error (#35289)
* [bitnami/grafana-alloy] fix quote prometheus.io/port annotation to avoid decoding error Signed-off-by: alleekio <a.clark@kontakt.io> * Update CHANGELOG.md Signed-off-by: Bitnami Bot <bitnami.bot@broadcom.com> * Update CHANGELOG.md Signed-off-by: Bitnami Bot <bitnami.bot@broadcom.com> --------- Signed-off-by: alleekio <a.clark@kontakt.io> Signed-off-by: Bitnami Bot <bitnami.bot@broadcom.com> Signed-off-by: Alvaro Neira Ayuso <alvaro.neira@broadcom.com> Co-authored-by: Bitnami Bot <bitnami.bot@broadcom.com> Co-authored-by: Alvaro Neira Ayuso <alvaro.neira@broadcom.com>
This commit is contained in:
@@ -1,8 +1,12 @@
|
||||
# Changelog
|
||||
|
||||
## 1.0.6 (2025-08-20)
|
||||
## 1.0.7 (2025-08-21)
|
||||
|
||||
* [bitnami/grafana-alloy] :zap: :arrow_up: Update dependency references ([#36149](https://github.com/bitnami/charts/pull/36149))
|
||||
* [bitnami/grafana-alloy] fix quote prometheus.io/port annotation to avoid decoding error ([#35289](https://github.com/bitnami/charts/pull/35289))
|
||||
|
||||
## <small>1.0.6 (2025-08-20)</small>
|
||||
|
||||
* [bitnami/grafana-alloy] :zap: :arrow_up: Update dependency references (#36149) ([dcedbbb](https://github.com/bitnami/charts/commit/dcedbbbb31c3cf103b9bf52cd29aa64fed4340c2)), closes [#36149](https://github.com/bitnami/charts/issues/36149)
|
||||
|
||||
## <small>1.0.5 (2025-08-13)</small>
|
||||
|
||||
|
||||
@@ -36,4 +36,4 @@ maintainers:
|
||||
name: grafana-alloy
|
||||
sources:
|
||||
- https://github.com/bitnami/charts/tree/main/bitnami/grafana-alloy
|
||||
version: 1.0.6
|
||||
version: 1.0.7
|
||||
|
||||
@@ -14,7 +14,7 @@ metadata:
|
||||
{{- if or .Values.service.annotations .Values.commonAnnotations .Values.metrics.enabled .Values.metrics.annotations }}
|
||||
{{- $annotations := include "common.tplvalues.merge" (dict "values" (list .Values.service.annotations .Values.commonAnnotations .Values.metrics.annotations) "context" .) }}
|
||||
{{- if .Values.metrics.enabled }}
|
||||
{{- $defaultMetricsAnnotations := dict "prometheus.io/scrape" "true" "prometheus.io/port" .Values.service.ports.http "prometheus.io/path" "/metrics" }}
|
||||
{{- $defaultMetricsAnnotations := dict "prometheus.io/scrape" "true" "prometheus.io/port" (.Values.service.ports.http | toString) "prometheus.io/path" "/metrics" }}
|
||||
{{- $annotations = include "common.tplvalues.merge" (dict "values" (list $annotations $defaultMetricsAnnotations) "context" .) }}
|
||||
{{- end }}
|
||||
annotations: {{- include "common.tplvalues.render" ( dict "value" $annotations "context" $ ) | nindent 4 }}
|
||||
|
||||
Reference in New Issue
Block a user