Skip to content

[bitnami/thanos] addition of parameter to configure statefulset annotations #33988

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 5 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions bitnami/thanos/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,12 @@
# Changelog

## 17.0.3 (2025-06-13)
## 17.0.4 (2025-06-16)

* [bitnami/thanos] :zap: :arrow_up: Update dependency references ([#34496](https://github.com/bitnami/charts/pull/34496))
* [bitnami/thanos] addition of parameter to configure statefulset annotations ([#33988](https://github.com/bitnami/charts/pull/33988))

## <small>17.0.3 (2025-06-13)</small>

* [bitnami/thanos] :zap: :arrow_up: Update dependency references (#34496) ([fe5afc2](https://github.com/bitnami/charts/commit/fe5afc2d868484a9b20b210307131d881568dd70)), closes [#34496](https://github.com/bitnami/charts/issues/34496)

## <small>17.0.2 (2025-06-09)</small>

Expand Down
2 changes: 1 addition & 1 deletion bitnami/thanos/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,4 +38,4 @@ maintainers:
name: thanos
sources:
- https://github.com/bitnami/charts/tree/main/bitnami/thanos
version: 17.0.3
version: 17.0.4
1 change: 1 addition & 0 deletions bitnami/thanos/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -1376,6 +1376,7 @@ You can enable this initContainer by setting `volumePermissions.enabled` to `tru
| `receive.nodeSelector` | Thanos Receive node labels for pod assignment | `{}` |
| `receive.tolerations` | Thanos Receive tolerations for pod assignment | `[]` |
| `receive.statefulsetLabels` | Thanos Receive statefulset labels | `{}` |
| `receive.statefulsetAnnotations` | Thanos Receive statefulset annotations | `{}` |
| `receive.podLabels` | Thanos Receive pod labels | `{}` |
| `receive.podAnnotations` | Annotations for Thanos Receive pods | `{}` |
| `receive.dnsConfig` | Deployment pod DNS config | `{}` |
Expand Down
10 changes: 8 additions & 2 deletions bitnami/thanos/templates/receive/statefulset.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,14 @@ metadata:
{{- if .Values.receive.statefulsetLabels }}
{{- include "common.tplvalues.render" ( dict "value" .Values.receive.statefulsetLabels "context" $ ) | nindent 4 }}
{{- end }}
{{- if .Values.commonAnnotations }}
annotations: {{- include "common.tplvalues.render" ( dict "value" .Values.commonAnnotations "context" $ ) | nindent 4 }}
{{- if or .Values.commonAnnotations .Values.receive.statefulsetAnnotations }}
annotations:
{{- if .Values.commonAnnotations }}
{{- include "common.tplvalues.render" ( dict "value" .Values.commonAnnotations "context" $ ) | nindent 4 }}
{{- end }}
{{- if .Values.receive.statefulsetAnnotations }}
{{- include "common.tplvalues.render" (dict "value" .Values.receive.statefulsetAnnotations "context" $) | nindent 4 }}
{{- end }}
{{- end }}
spec:
{{- if not .Values.receive.autoscaling.enabled }}
Expand Down
4 changes: 4 additions & 0 deletions bitnami/thanos/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4225,6 +4225,10 @@ receive:
## ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/
##
statefulsetLabels: {}
## @param receive.statefulsetAnnotations Thanos Receive statefulset annotations
## ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations/
##
statefulsetAnnotations: {}
## @param receive.podLabels Thanos Receive pod labels
## ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/
##
Expand Down
Loading