Skip to content

Commit

Permalink
[bitnami/thanos] added pvc labels to thanos-receive (#24934)
Browse files Browse the repository at this point in the history
* [bitnami/argo-cd] Release 6.0.5 (#24927)

* [bitnami/argo-cd] Release 6.0.5 updating components versions

Signed-off-by: Bitnami Containers <bitnami-bot@vmware.com>

* Update CRDs automatically

Signed-off-by: Bitnami Containers <bitnami-bot@vmware.com>

---------

Signed-off-by: Bitnami Containers <bitnami-bot@vmware.com>
Signed-off-by: Thorsten Kerber <th.kerber+github@gmail.com>

* feat: added pvc labels to receiver

Signed-off-by: Thorsten Kerber <th.kerber+github@gmail.com>

* chore: bumped Chart
Signed-off-by: Thorsten Kerber <th.kerber+github@gmail.com>

---------

Signed-off-by: Bitnami Containers <bitnami-bot@vmware.com>
Signed-off-by: Thorsten Kerber <th.kerber+github@gmail.com>
Signed-off-by: thorker <46462404+thorker@users.noreply.github.com>
Signed-off-by: David Gomez <dgomezleon@vmware.com>
Co-authored-by: Bitnami Bot <bitnami-bot@vmware.com>
Co-authored-by: David Gomez <dgomezleon@vmware.com>
  • Loading branch information
3 people committed Apr 23, 2024
1 parent 21df419 commit 2acf132
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 1 deletion.
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

0 comments on commit 2acf132

Please sign in to comment.