[bitnami/thanos] Fix sharded storegateway endpoints not respecting dnsDiscovery setting (#36418)

* [bitnami/thanos] Fix sharded storegateway endpoints not respecting dnsDiscovery setting

Signed-off-by: parthivrmenon <parthivrmenon@gmail.com>

* Bump chart version to 17.3.4

Signed-off-by: parthivrmenon <parthivrmenon@gmail.com>

* Update CHANGELOG.md

Signed-off-by: Bitnami Bot <bitnami.bot@broadcom.com>

---------

Signed-off-by: parthivrmenon <parthivrmenon@gmail.com>
Signed-off-by: Bitnami Bot <bitnami.bot@broadcom.com>
Co-authored-by: Bitnami Bot <bitnami.bot@broadcom.com>
This commit is contained in:
Parthiv Roshan
2026-01-12 17:16:03 +05:30
committed by GitHub
parent 82a1bb60eb
commit ac5177e824
3 changed files with 14 additions and 4 deletions

View File

@@ -1,8 +1,14 @@
# Changelog # Changelog
## 17.3.3 (2025-10-21) ## 17.3.4 (2025-12-20)
* bitnami/thanos template extraFlags in sharded statefulset storegateway like the template for non-sharded statefulset storegateway ([#36360](https://github.com/bitnami/charts/pull/36360)) * [bitnami/thanos] Fix sharded storegateway endpoints not respecting dnsDiscovery setting ([#36418](https://github.com/bitnami/charts/pull/36418))
## <small>17.3.3 (2025-11-03)</small>
* [bitnami/*] Remove annotations.category (#36224) ([2abc0f9](https://github.com/bitnami/charts/commit/2abc0f9d7e89a5453e57f029c66f581b3d5855ef)), closes [#36224](https://github.com/bitnami/charts/issues/36224)
* [bitnami/*][TNZ-62332] Modify charts' READMEs title (#36372) ([2012e46](https://github.com/bitnami/charts/commit/2012e46699f555bb1e10134691031975bb5ca50b)), closes [#36372](https://github.com/bitnami/charts/issues/36372)
* bitnami/thanos template extraFlags in sharded statefulset storegateway like the template for non-sha ([2dfd26c](https://github.com/bitnami/charts/commit/2dfd26cbcbda4961168712b1709ef4c52368b623)), closes [#36360](https://github.com/bitnami/charts/issues/36360)
## <small>17.3.1 (2025-08-13)</small> ## <small>17.3.1 (2025-08-13)</small>

View File

@@ -37,4 +37,4 @@ maintainers:
name: thanos name: thanos
sources: sources:
- https://github.com/bitnami/charts/tree/main/bitnami/thanos - https://github.com/bitnami/charts/tree/main/bitnami/thanos
version: 17.3.3 version: 17.3.4

View File

@@ -137,7 +137,11 @@ spec:
{{- if $.Values.storegateway.useEndpointGroup }} {{- if $.Values.storegateway.useEndpointGroup }}
- --endpoint-group={{ include "common.names.fullname" $ }}-storegateway-{{ toString $index }}.{{ $.Release.Namespace }}.svc.{{ $.Values.clusterDomain }}:{{ $.Values.storegateway.service.ports.grpc }} - --endpoint-group={{ include "common.names.fullname" $ }}-storegateway-{{ toString $index }}.{{ $.Release.Namespace }}.svc.{{ $.Values.clusterDomain }}:{{ $.Values.storegateway.service.ports.grpc }}
{{- else }} {{- else }}
- --endpoint=dnssrv+_grpc._tcp.{{ include "common.names.fullname" $ }}-storegateway-{{ toString $index }}.{{ $.Release.Namespace }}.svc.{{ $.Values.clusterDomain }} {{- if $.Values.query.dnsDiscovery.enabled }}
- --endpoint=dnssrv+_grpc._tcp.{{ include "common.names.fullname" $ }}-storegateway-{{ toString $index }}.{{ $.Release.Namespace }}.svc.{{ $.Values.clusterDomain }}
{{- else }}
- --endpoint={{ include "common.names.fullname" $ }}-storegateway-{{ toString $index }}.{{ $.Release.Namespace }}.svc.{{ $.Values.clusterDomain }}:{{ $.Values.storegateway.service.ports.grpc }}
{{- end }}
{{- end }} {{- end }}
{{- end }} {{- end }}
{{- end }} {{- end }}