Skip to content

Commit 62056a0

Browse files
committed
[bitnami/thanos] Fix invalid YAML syntax on the query deployment template when storegateway.useEndpointGroup is false
1 parent 86b02ef commit 62056a0

File tree

3 files changed

+10
-6
lines changed

3 files changed

+10
-6
lines changed

bitnami/thanos/CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
# Changelog
22

3-
## 17.4.0 (2026-02-08)
3+
## 17.4.1 (2026-03-20)
4+
5+
* [bitnami/thanos]: Fix invalid YAML syntax on the query deployment template when `storegateway.useEndpointGroup` is false ([#36485](https://github.com/bitnami/charts/pull/36485), closes [#36474](https://github.com/bitnami/charts/issues/36474))
6+
7+
## <small>17.4.0 (2026-02-08)</small>
48

59
* [bitnami/thanos]: Adds compactor.deploymentAnnotation to thanos compactor options ([#36453](https://github.com/bitnami/charts/pull/36453))
610

bitnami/thanos/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,4 +37,4 @@ maintainers:
3737
name: thanos
3838
sources:
3939
- https://github.com/bitnami/charts/tree/main/bitnami/thanos
40-
version: 17.4.0
40+
version: 17.4.1

bitnami/thanos/templates/query/deployment.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -137,10 +137,10 @@ spec:
137137
{{- if $.Values.storegateway.useEndpointGroup }}
138138
- --endpoint-group={{ include "common.names.fullname" $ }}-storegateway-{{ toString $index }}.{{ $.Release.Namespace }}.svc.{{ $.Values.clusterDomain }}:{{ $.Values.storegateway.service.ports.grpc }}
139139
{{- else }}
140-
{{- if $.Values.query.dnsDiscovery.enabled }}
141-
- --endpoint=dnssrv+_grpc._tcp.{{ include "common.names.fullname" $ }}-storegateway-{{ toString $index }}.{{ $.Release.Namespace }}.svc.{{ $.Values.clusterDomain }}
142-
{{- else }}
143-
- --endpoint={{ include "common.names.fullname" $ }}-storegateway-{{ toString $index }}.{{ $.Release.Namespace }}.svc.{{ $.Values.clusterDomain }}:{{ $.Values.storegateway.service.ports.grpc }}
140+
{{- if $.Values.query.dnsDiscovery.enabled }}
141+
- --endpoint=dnssrv+_grpc._tcp.{{ include "common.names.fullname" $ }}-storegateway-{{ toString $index }}.{{ $.Release.Namespace }}.svc.{{ $.Values.clusterDomain }}
142+
{{- else }}
143+
- --endpoint={{ include "common.names.fullname" $ }}-storegateway-{{ toString $index }}.{{ $.Release.Namespace }}.svc.{{ $.Values.clusterDomain }}:{{ $.Values.storegateway.service.ports.grpc }}
144144
{{- end }}
145145
{{- end }}
146146
{{- end }}

0 commit comments

Comments
 (0)