Skip to content
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

[bitnami/thanos] added pvc labels to thanos-receive #24934

Merged
merged 6 commits into from
Apr 23, 2024
Merged
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
2 changes: 1 addition & 1 deletion bitnami/thanos/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,4 +35,4 @@ maintainers:
name: thanos
sources:
- https://github.com/bitnami/charts/tree/main/bitnami/thanos
version: 15.1.3
version: 15.2.0
1 change: 1 addition & 0 deletions bitnami/thanos/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -1361,6 +1361,7 @@ You can enable this initContainer by setting `volumePermissions.enabled` to `tru
| `receive.persistence.storageClass` | Specify the `storageClass` used to provision the volume | `""` |
| `receive.persistence.accessModes` | PVC Access Modes for data volume | `["ReadWriteOnce"]` |
| `receive.persistence.size` | PVC Storage Request for data volume | `8Gi` |
| `receive.persistence.labels` | Labels for the PVC | `{}` |
| `receive.persistence.annotations` | Annotations for the PVC | `{}` |
| `receive.persistence.existingClaim` | Name of an existing PVC to use | `""` |
| `receive.ingress.enabled` | Set to true to enable ingress record generation | `false` |
Expand Down
3 changes: 3 additions & 0 deletions bitnami/thanos/templates/receive/statefulset.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -309,6 +309,9 @@ spec:
{{- if .Values.receive.persistence.annotations }}
annotations: {{- include "common.tplvalues.render" ( dict "value" .Values.receive.persistence.annotations "context" $) | nindent 10 }}
{{- end }}
{{- if .Values.receive.persistence.labels }}
labels: {{- include "common.tplvalues.render" ( dict "value" .Values.receive.persistence.labels "context" $) | nindent 10 }}
{{- end }}
spec:
accessModes:
{{- range .Values.receive.persistence.accessModes }}
Expand Down
3 changes: 3 additions & 0 deletions bitnami/thanos/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4332,6 +4332,9 @@ receive:
## @param receive.persistence.size PVC Storage Request for data volume
##
size: 8Gi
## @param receive.persistence.labels Labels for the PVC
##
labels: {}
## @param receive.persistence.annotations Annotations for the PVC
##
annotations: {}
Expand Down
Loading