Skip to content
Snippets Groups Projects
Unverified Commit 46c8f4b2 authored by Göran Pöhner's avatar Göran Pöhner Committed by GitHub
Browse files

Add statefulset annotations to rabbitmq (#1265)

parent 04c2e9c4
No related branches found
No related tags found
No related merge requests found
......@@ -7,6 +7,6 @@ type: application
maintainers:
- name: groundhog2k
version: "0.7.8"
version: "0.6.30"
appVersion: "3.12.8"
appVersion: "3.11.25"
......@@ -76,6 +76,8 @@ helm uninstall my-release
| initResources | object | `{}` | Resource limits and requests for the default init container |
| resources | object | `{}` | Resource limits and requests |
| nodeSelector | object | `{}` | Deployment node selector |
| statefulsetLabels | object | `{}` | Additional StatefulSet labels |
| statefulsetAnnotations | object | `{}` | Additional StatefulSet annotations |
| podAnnotations | object | `{}` | Additional pod annotations |
| podSecurityContext | object | `see values.yaml` | Pod security context |
| securityContext | object | `see values.yaml` | Container security context |
......
......@@ -90,6 +90,7 @@
| 0.6.27 | 3.11.23 | Upgraded to RabbitMQ 3.11.23 |
| 0.6.28 | 3.11.24 | Upgraded to RabbitMQ 3.11.24 |
| 0.6.29 | 3.11.25 | Upgraded to RabbitMQ 3.11.25 |
| 0.6.30 | 3.11.25 | Upgraded to RabbitMQ 3.11.25 |
| 0.7.0 | 3.12.0 | Upgraded to RabbitMQ 3.12.0 |
| 0.7.1 | 3.12.1 | Upgraded to RabbitMQ 3.12.1 |
| 0.7.2 | 3.12.2 | Upgraded to RabbitMQ 3.12.2 |
......
......@@ -4,6 +4,13 @@ metadata:
name: {{ include "rabbitmq.fullname" . }}
labels:
{{- include "rabbitmq.labels" . | nindent 4 }}
{{- with .Values.statefulsetLabels }}
{{- toYaml . | nindent 4 }}
{{- end }}
{{- with .Values.statefulsetAnnotations }}
annotations:
{{- toYaml . | nindent 4 }}
{{- end }}
spec:
selector:
matchLabels:
......
......@@ -23,6 +23,12 @@ fullnameOverride: ""
## Number of replicas
replicaCount: 1
## Additional statefulset labels
statefulsetLabels: {}
## Additional statefulset annotations
statefulsetAnnotations: {}
## Additional pod annotations
podAnnotations: {}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment