blob: 41c0bfce437ae20fa3eec3cb98eb344957a874dd [file] [log] [blame]
Mohammed Naser9ad0d462023-01-15 20:36:37 -05001## @section Global parameters
2## Global Docker image parameters
3## Please, note that this will override the image parameters, including dependencies, configured to use the global value
4## Current available global Docker image parameters: imageRegistry, imagePullSecrets and storageClass
5##
6
7## @param global.imageRegistry Global Docker image registry
8## @param global.imagePullSecrets Global Docker registry secret names as an array
9## @param global.storageClass Global StorageClass for Persistent Volume(s)
10##
11global:
12 imageRegistry: ""
13 ## E.g.
14 ## imagePullSecrets:
15 ## - myRegistryKeySecretName
16 ##
17 imagePullSecrets: []
18 storageClass: ""
19
20## @section Common parameters
21##
22
23## @param kubeVersion Override Kubernetes version
24##
25kubeVersion: ""
26## @param nameOverride String to partially override common.names.fullname
27##
28nameOverride: ""
29## @param fullnameOverride String to fully override common.names.fullname
30##
31fullnameOverride: ""
32## @param commonLabels Labels to add to all deployed objects
33##
34commonLabels: {}
35## @param commonAnnotations Annotations to add to all deployed objects
36##
37commonAnnotations: {}
38## @param clusterDomain Kubernetes cluster domain name
39##
40clusterDomain: cluster.local
41## @param extraDeploy Array of extra objects to deploy with the release
42##
43extraDeploy: []
44## Enable diagnostic mode in the deployment(s)/statefulset(s)
45##
46diagnosticMode:
47 ## @param diagnosticMode.enabled Enable diagnostic mode (all probes will be disabled)
48 ##
49 enabled: false
50
51## @section RabbitMQ Cluster Operator Parameters
52##
53
54## Bitnami RabbitMQ Image
55## ref: https://hub.docker.com/r/bitnami/rabbitmq/tags/
56## @param rabbitmqImage.registry RabbitMQ Image registry
57## @param rabbitmqImage.repository RabbitMQ Image repository
58## @param rabbitmqImage.tag RabbitMQ Image tag (immutable tags are recommended)
59## @param rabbitmqImage.pullSecrets RabbitMQ Image pull secrets
60##
61rabbitmqImage:
62 registry: docker.io
63 repository: bitnami/rabbitmq
64 tag: 3.10.5-debian-11-r2
65 ## Optionally specify an array of imagePullSecrets.
66 ## Secrets must be manually created in the namespace.
67 ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/pull-rabbitmqImage-private-registry/
68 ## e.g:
69 ## pullSecrets:
70 ## - myRegistryKeySecretName
71 ##
72 pullSecrets: []
73
74## Bitnami RabbitMQ Default User Credential Updater Image
75## ref: https://hub.docker.com/r/bitnami/rmq-default-credential-updater/tags/
76## @param credentialUpdaterImage.registry RabbitMQ Default User Credential Updater Image registry
77## @param credentialUpdaterImage.repository RabbitMQ Default User Credential Updater Image repository
78## @param credentialUpdaterImage.tag RabbitMQ Default User Credential Updater Image tag (immutable tags are recommended)
79## @param credentialUpdaterImage.pullSecrets RabbitMQ Default User Credential Updater Image pull secrets
80##
81credentialUpdaterImage:
82 registry: docker.io
83 repository: bitnami/rmq-default-credential-updater
84 tag: 1.0.2-scratch-r2
85 ## Optionally specify an array of imagePullSecrets.
86 ## Secrets must be manually created in the namespace.
87 ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/pull-credentialUpdaterImage-private-registry/
88 ## e.g:
89 ## pullSecrets:
90 ## - myRegistryKeySecretName
91 ##
92 pullSecrets: []
93
94clusterOperator:
95 ## Bitnami RabbitMQ Cluster Operator image
96 ## ref: https://hub.docker.com/r/bitnami/rabbitmq-cluster-operator/tags/
97 ## @param clusterOperator.image.registry RabbitMQ Cluster Operator image registry
98 ## @param clusterOperator.image.repository RabbitMQ Cluster Operator image repository
99 ## @param clusterOperator.image.tag RabbitMQ Cluster Operator image tag (immutable tags are recommended)
100 ## @param clusterOperator.image.pullPolicy RabbitMQ Cluster Operator image pull policy
101 ## @param clusterOperator.image.pullSecrets RabbitMQ Cluster Operator image pull secrets
102 ##
103 image:
104 registry: docker.io
105 repository: bitnami/rabbitmq-cluster-operator
106 tag: 1.13.1-scratch-r3
107 ## Specify a imagePullPolicy
108 ## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent'
109 ## ref: https://kubernetes.io/docs/user-guide/images/#pre-pulling-images
110 ##
111 pullPolicy: IfNotPresent
112 ## Optionally specify an array of imagePullSecrets.
113 ## Secrets must be manually created in the namespace.
114 ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/pull-image-private-registry/
115 ## e.g:
116 ## pullSecrets:
117 ## - myRegistryKeySecretName
118 ##
119 pullSecrets: []
120
121 ## @param clusterOperator.replicaCount Number of RabbitMQ Cluster Operator replicas to deploy
122 ##
123 replicaCount: 1
124 ## @param clusterOperator.schedulerName Alternative scheduler
125 ##
126 schedulerName: ""
127 ## @param clusterOperator.topologySpreadConstraints Topology Spread Constraints for pod assignment
128 ## https://kubernetes.io/docs/concepts/workloads/pods/pod-topology-spread-constraints/
129 ## The value is evaluated as a template
130 ##
131 topologySpreadConstraints: []
132 ## @param clusterOperator.terminationGracePeriodSeconds In seconds, time the given to the %%MAIN_CONTAINER_NAME%% pod needs to terminate gracefully
133 ## ref: https://kubernetes.io/docs/concepts/workloads/pods/pod/#termination-of-pods
134 ##
135 terminationGracePeriodSeconds: ""
136 ## Configure extra options for RabbitMQ Cluster Operator containers' liveness and readiness probes
137 ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-probes/#configure-probes
138 ## @param clusterOperator.livenessProbe.enabled Enable livenessProbe on RabbitMQ Cluster Operator nodes
139 ## @param clusterOperator.livenessProbe.initialDelaySeconds Initial delay seconds for livenessProbe
140 ## @param clusterOperator.livenessProbe.periodSeconds Period seconds for livenessProbe
141 ## @param clusterOperator.livenessProbe.timeoutSeconds Timeout seconds for livenessProbe
142 ## @param clusterOperator.livenessProbe.failureThreshold Failure threshold for livenessProbe
143 ## @param clusterOperator.livenessProbe.successThreshold Success threshold for livenessProbe
144 ##
145 livenessProbe:
146 enabled: true
147 initialDelaySeconds: 5
148 periodSeconds: 30
149 timeoutSeconds: 5
150 successThreshold: 1
151 failureThreshold: 5
152 ## @param clusterOperator.readinessProbe.enabled Enable readinessProbe on RabbitMQ Cluster Operator nodes
153 ## @param clusterOperator.readinessProbe.initialDelaySeconds Initial delay seconds for readinessProbe
154 ## @param clusterOperator.readinessProbe.periodSeconds Period seconds for readinessProbe
155 ## @param clusterOperator.readinessProbe.timeoutSeconds Timeout seconds for readinessProbe
156 ## @param clusterOperator.readinessProbe.failureThreshold Failure threshold for readinessProbe
157 ## @param clusterOperator.readinessProbe.successThreshold Success threshold for readinessProbe
158 ##
159 readinessProbe:
160 enabled: true
161 initialDelaySeconds: 5
162 periodSeconds: 30
163 timeoutSeconds: 5
164 successThreshold: 1
165 failureThreshold: 5
166 ## @param clusterOperator.startupProbe.enabled Enable startupProbe on RabbitMQ Cluster Operator nodes
167 ## @param clusterOperator.startupProbe.initialDelaySeconds Initial delay seconds for startupProbe
168 ## @param clusterOperator.startupProbe.periodSeconds Period seconds for startupProbe
169 ## @param clusterOperator.startupProbe.timeoutSeconds Timeout seconds for startupProbe
170 ## @param clusterOperator.startupProbe.failureThreshold Failure threshold for startupProbe
171 ## @param clusterOperator.startupProbe.successThreshold Success threshold for startupProbe
172 ##
173 startupProbe:
174 enabled: false
175 initialDelaySeconds: 5
176 periodSeconds: 30
177 timeoutSeconds: 5
178 successThreshold: 1
179 failureThreshold: 5
180
181 ## @param clusterOperator.customLivenessProbe Custom livenessProbe that overrides the default one
182 ##
183 customLivenessProbe: {}
184 ## @param clusterOperator.customReadinessProbe Custom readinessProbe that overrides the default one
185 ##
186 customReadinessProbe: {}
187 ## @param clusterOperator.customStartupProbe Custom startupProbe that overrides the default one
188 ##
189 customStartupProbe: {}
190
191 ## RabbitMQ Cluster Operator resource requests and limits
192 ## ref: https://kubernetes.io/docs/user-guide/compute-resources/
193 ## @param clusterOperator.resources.limits The resources limits for the RabbitMQ Cluster Operator containers
194 ## @param clusterOperator.resources.requests The requested resources for the RabbitMQ Cluster Operator containers
195 ##
196 resources:
197 limits: {}
198 requests: {}
199
200 ## Configure Pods Security Context
201 ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-pod
202 ## @param clusterOperator.podSecurityContext.enabled Enabled RabbitMQ Cluster Operator pods' Security Context
203 ## @param clusterOperator.podSecurityContext.fsGroup Set RabbitMQ Cluster Operator pod's Security Context fsGroup
204 ##
205 podSecurityContext:
206 enabled: true
207 fsGroup: 1001
208 ## Configure Container Security Context
209 ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-pod
210 ## @param clusterOperator.containerSecurityContext.enabled Enabled RabbitMQ Cluster Operator containers' Security Context
211 ## @param clusterOperator.containerSecurityContext.runAsUser Set RabbitMQ Cluster Operator containers' Security Context runAsUser
212 ## @param clusterOperator.containerSecurityContext.runAsNonRoot Force running the container as non root
213 ## @param clusterOperator.containerSecurityContext.readOnlyRootFilesystem mount / (root) as a readonly filesystem on cluster operator containers
214 ##
215 containerSecurityContext:
216 enabled: true
217 runAsUser: 1001
218 runAsNonRoot: true
219 readOnlyRootFilesystem: true
220
221 ## @param clusterOperator.command Override default container command (useful when using custom images)
222 ##
223 command: []
224 ## @param clusterOperator.args Override default container args (useful when using custom images)
225 ##
226 args: []
227 ## @param clusterOperator.hostAliases RabbitMQ Cluster Operator pods host aliases
228 ## https://kubernetes.io/docs/concepts/services-networking/add-entries-to-pod-etc-hosts-with-host-aliases/
229 ##
230 hostAliases: []
231 ## @param clusterOperator.podLabels Extra labels for RabbitMQ Cluster Operator pods
232 ## ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/
233 ##
234 podLabels: {}
235 ## @param clusterOperator.podAnnotations Annotations for RabbitMQ Cluster Operator pods
236 ## ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations/
237 ##
238 podAnnotations: {}
239 ## @param clusterOperator.podAffinityPreset Pod affinity preset. Ignored if `affinity` is set. Allowed values: `soft` or `hard`
240 ## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#inter-pod-affinity-and-anti-affinity
241 ##
242 podAffinityPreset: ""
243 ## @param clusterOperator.podAntiAffinityPreset Pod anti-affinity preset. Ignored if `affinity` is set. Allowed values: `soft` or `hard`
244 ## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#inter-pod-affinity-and-anti-affinity
245 ##
246 podAntiAffinityPreset: soft
247 ## Node affinity preset
248 ## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#node-affinity
249 ##
250 nodeAffinityPreset:
251 ## @param clusterOperator.nodeAffinityPreset.type Node affinity preset type. Ignored if `affinity` is set. Allowed values: `soft` or `hard`
252 ##
253 type: ""
254 ## @param clusterOperator.nodeAffinityPreset.key Node label key to match. Ignored if `affinity` is set
255 ##
256 key: ""
257 ## @param clusterOperator.nodeAffinityPreset.values Node label values to match. Ignored if `affinity` is set
258 ## E.g.
259 ## values:
260 ## - e2e-az1
261 ## - e2e-az2
262 ##
263 values: []
264 ## @param clusterOperator.affinity Affinity for RabbitMQ Cluster Operator pods assignment
265 ## ref: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/#affinity-and-anti-affinity
266 ## NOTE: `podAffinityPreset`, `podAntiAffinityPreset`, and `nodeAffinityPreset` will be ignored when it's set
267 ##
268 affinity: {}
269 ## @param clusterOperator.nodeSelector Node labels for RabbitMQ Cluster Operator pods assignment
270 ## ref: https://kubernetes.io/docs/user-guide/node-selection/
271 ##
272 nodeSelector: {}
273 ## @param clusterOperator.tolerations Tolerations for RabbitMQ Cluster Operator pods assignment
274 ## ref: https://kubernetes.io/docs/concepts/configuration/taint-and-toleration/
275 ##
276 tolerations: []
277 ## @param clusterOperator.updateStrategy.type RabbitMQ Cluster Operator statefulset strategy type
278 ## ref: https://kubernetes.io/docs/concepts/workloads/controllers/statefulset/#update-strategies
279 ##
280 updateStrategy:
281 ## StrategyType
282 ## Can be set to RollingUpdate or OnDelete
283 ##
284 type: RollingUpdate
285 ## @param clusterOperator.priorityClassName RabbitMQ Cluster Operator pods' priorityClassName
286 ##
287 priorityClassName: ""
288 ## @param clusterOperator.lifecycleHooks for the RabbitMQ Cluster Operator container(s) to automate configuration before or after startup
289 ##
290 lifecycleHooks: {}
291
292 ## @param clusterOperator.containerPorts.metrics RabbitMQ Cluster Operator container port (used for metrics)
293 ##
294 containerPorts:
295 metrics: 9782
296
297 ## @param clusterOperator.extraEnvVars Array with extra environment variables to add to RabbitMQ Cluster Operator nodes
298 ## e.g:
299 ## extraEnvVars:
300 ## - name: FOO
301 ## value: "bar"
302 ##
303 extraEnvVars: []
304 ## @param clusterOperator.extraEnvVarsCM Name of existing ConfigMap containing extra env vars for RabbitMQ Cluster Operator nodes
305 ##
306 extraEnvVarsCM: ""
307 ## @param clusterOperator.extraEnvVarsSecret Name of existing Secret containing extra env vars for RabbitMQ Cluster Operator nodes
308 ##
309 extraEnvVarsSecret: ""
310 ## @param clusterOperator.extraVolumes Optionally specify extra list of additional volumes for the RabbitMQ Cluster Operator pod(s)
311 ##
312 extraVolumes: []
313 ## @param clusterOperator.extraVolumeMounts Optionally specify extra list of additional volumeMounts for the RabbitMQ Cluster Operator container(s)
314 ##
315 extraVolumeMounts: []
316 ## @param clusterOperator.sidecars Add additional sidecar containers to the RabbitMQ Cluster Operator pod(s)
317 ## e.g:
318 ## sidecars:
319 ## - name: your-image-name
320 ## image: your-image
321 ## imagePullPolicy: Always
322 ## ports:
323 ## - name: portname
324 ## containerPort: 1234
325 ##
326 sidecars: []
327 ## @param clusterOperator.initContainers Add additional init containers to the RabbitMQ Cluster Operator pod(s)
328 ## ref: https://kubernetes.io/docs/concepts/workloads/pods/init-containers/
329 ## e.g:
330 ## initContainers:
331 ## - name: your-image-name
332 ## image: your-image
333 ## imagePullPolicy: Always
334 ## command: ['sh', '-c', 'echo "hello world"']
335 ##
336 initContainers: []
337
338 ## RBAC configuration
339 ##
340 rbac:
341 ## @param clusterOperator.rbac.create Specifies whether RBAC resources should be created
342 ##
343 create: true
344
345 ## ServiceAccount configuration
346 ##
347 serviceAccount:
348 ## @param clusterOperator.serviceAccount.create Specifies whether a ServiceAccount should be created
349 ##
350 create: true
351 ## @param clusterOperator.serviceAccount.name The name of the ServiceAccount to use.
352 ## If not set and create is true, a name is generated using the common.names.fullname template
353 ##
354 name: ""
355 ## @param clusterOperator.serviceAccount.annotations Add annotations
356 ##
357 annotations: {}
358 ## @param clusterOperator.serviceAccount.automountServiceAccountToken Automount API credentials for a service account.
359 ##
360 automountServiceAccountToken: true
361
362 ## @section RabbitMQ Cluster Operator Metrics parameters
363 ##
364 metrics:
365 ## @param clusterOperator.metrics.enabled Create a service for accessing the metrics endpoint
366 ##
367 enabled: false
368 ## Metrics service parameters
369 ##
370 service:
371 ## @param clusterOperator.metrics.service.type RabbitMQ Cluster Operator metrics service type
372 ##
373 type: ClusterIP
374 ## @param clusterOperator.metrics.service.ports.http RabbitMQ Cluster Operator metrics service HTTP port
375 ##
376 ports:
377 http: 80
378 ## Node ports to expose
379 ## @param clusterOperator.metrics.service.nodePorts.http Node port for HTTP
380 ## NOTE: choose port between <30000-32767>
381 ##
382 nodePorts:
383 http: ""
384 ## @param clusterOperator.metrics.service.clusterIP RabbitMQ Cluster Operator metrics service Cluster IP
385 ## e.g.:
386 ## clusterIP: None
387 ##
388 clusterIP: ""
389 ## @param clusterOperator.metrics.service.extraPorts Extra ports to expose (normally used with the `sidecar` value)
390 ##
391 extraPorts: []
392 ## @param clusterOperator.metrics.service.loadBalancerIP RabbitMQ Cluster Operator metrics service Load Balancer IP
393 ## ref: https://kubernetes.io/docs/concepts/services-networking/service/#type-loadbalancer
394 ##
395 loadBalancerIP: ""
396 ## @param clusterOperator.metrics.service.loadBalancerSourceRanges RabbitMQ Cluster Operator metrics service Load Balancer sources
397 ## ref: https://kubernetes.io/docs/tasks/access-application-cluster/configure-cloud-provider-firewall/#restrict-access-for-loadbalancer-service
398 ## e.g:
399 ## loadBalancerSourceRanges:
400 ## - 10.10.10.0/24
401 ##
402 loadBalancerSourceRanges: []
403 ## @param clusterOperator.metrics.service.externalTrafficPolicy RabbitMQ Cluster Operator metrics service external traffic policy
404 ## ref https://kubernetes.io/docs/tasks/access-application-cluster/create-external-load-balancer/#preserving-the-client-source-ip
405 ##
406 externalTrafficPolicy: Cluster
407 ## @param clusterOperator.metrics.service.annotations [object] Additional custom annotations for RabbitMQ Cluster Operator metrics service
408 ##
409 annotations:
410 prometheus.io/scrape: "true"
411 prometheus.io/port: "{{ .Values.clusterOperator.metrics.service.ports.http }}"
412 ## @param clusterOperator.metrics.service.sessionAffinity Session Affinity for Kubernetes service, can be "None" or "ClientIP"
413 ## If "ClientIP", consecutive client requests will be directed to the same Pod
414 ## ref: https://kubernetes.io/docs/concepts/services-networking/service/#virtual-ips-and-service-proxies
415 ##
416 sessionAffinity: None
417 ## @param clusterOperator.metrics.service.sessionAffinityConfig Additional settings for the sessionAffinity
418 ## sessionAffinityConfig:
419 ## clientIP:
420 ## timeoutSeconds: 300
421 ##
422 sessionAffinityConfig: {}
423 serviceMonitor:
424 ## @param clusterOperator.metrics.serviceMonitor.enabled Specify if a servicemonitor will be deployed for prometheus-operator
425 ##
426 enabled: false
427 ## @param clusterOperator.metrics.serviceMonitor.namespace Namespace which Prometheus is running in
428 ## e.g:
429 ## namespace: monitoring
430 ##
431 namespace: ""
432 ## @param clusterOperator.metrics.serviceMonitor.jobLabel Specify the jobLabel to use for the prometheus-operator
433 ##
434 jobLabel: app.kubernetes.io/name
435 ## @param clusterOperator.metrics.serviceMonitor.honorLabels Honor metrics labels
436 ## ref: https://github.com/coreos/prometheus-operator/blob/master/Documentation/api.md#endpoint
437 ##
438 honorLabels: false
439 ## @param clusterOperator.metrics.serviceMonitor.selector Prometheus instance selector labels
440 ## ref: https://github.com/bitnami/charts/tree/master/bitnami/prometheus-operator#prometheus-configuration
441 ## e.g:
442 ## selector:
443 ## prometheus: my-prometheus
444 ##
445 selector: {}
446 ## @param clusterOperator.metrics.serviceMonitor.scrapeTimeout Timeout after which the scrape is ended
447 ## ref: https://github.com/coreos/prometheus-operator/blob/master/Documentation/api.md#endpoint
448 ## e.g:
449 ## scrapeTimeout: 10s
450 ##
451 scrapeTimeout: ""
452 ## @param clusterOperator.metrics.serviceMonitor.interval Scrape interval. If not set, the Prometheus default scrape interval is used
453 ##
454 interval: ""
455
456 ## DEPRECATED: Use clusterOperator.metrics.serviceMonitor.labels instead
457 ## This value will be removed in a future release
458 ## additionalLabels: {}
459
460 ## @param clusterOperator.metrics.serviceMonitor.metricRelabelings Specify additional relabeling of metrics
461 ##
462 metricRelabelings: []
463 ## @param clusterOperator.metrics.serviceMonitor.relabelings Specify general relabeling
464 ##
465 relabelings: []
466 ## @param clusterOperator.metrics.serviceMonitor.labels Extra labels for the ServiceMonitor
467 ##
468 labels: {}
469
470## @section RabbitMQ Messaging Topology Operator Parameters
471##
472msgTopologyOperator:
473 ## Bitnami RabbitMQ Messaging Topology Operator image
474 ## ref: https://hub.docker.com/r/bitnami/rmq-messaging-topology-operator/tags/
475 ## @param msgTopologyOperator.image.registry RabbitMQ Messaging Topology Operator image registry
476 ## @param msgTopologyOperator.image.repository RabbitMQ Messaging Topology Operator image repository
477 ## @param msgTopologyOperator.image.tag RabbitMQ Messaging Topology Operator image tag (immutable tags are recommended)
478 ## @param msgTopologyOperator.image.pullPolicy RabbitMQ Messaging Topology Operator image pull policy
479 ## @param msgTopologyOperator.image.pullSecrets RabbitMQ Messaging Topology Operator image pull secrets
480 ##
481 image:
482 registry: docker.io
483 repository: bitnami/rmq-messaging-topology-operator
484 tag: 1.6.0-scratch-r0
485 ## Specify a imagePullPolicy
486 ## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent'
487 ## ref: https://kubernetes.io/docs/user-guide/images/#pre-pulling-images
488 ##
489 pullPolicy: IfNotPresent
490 ## Optionally specify an array of imagePullSecrets.
491 ## Secrets must be manually created in the namespace.
492 ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/pull-image-private-registry/
493 ## e.g:
494 ## pullSecrets:
495 ## - myRegistryKeySecretName
496 ##
497 pullSecrets: []
498
499 ## @param msgTopologyOperator.replicaCount Number of RabbitMQ Messaging Topology Operator replicas to deploy
500 ##
501 replicaCount: 1
502 ## @param msgTopologyOperator.topologySpreadConstraints Topology Spread Constraints for pod assignment
503 ## https://kubernetes.io/docs/concepts/workloads/pods/pod-topology-spread-constraints/
504 ## The value is evaluated as a template
505 ##
506 topologySpreadConstraints: []
507 ## @param msgTopologyOperator.schedulerName Alternative scheduler
508 ##
509 schedulerName: ""
510 ## @param msgTopologyOperator.terminationGracePeriodSeconds In seconds, time the given to the %%MAIN_CONTAINER_NAME%% pod needs to terminate gracefully
511 ## ref: https://kubernetes.io/docs/concepts/workloads/pods/pod/#termination-of-pods
512 ##
513 terminationGracePeriodSeconds: ""
514 ## Configure extra options for RabbitMQ Messaging Topology Operator containers' liveness and readiness probes
515 ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-probes/#configure-probes
516 ## @param msgTopologyOperator.livenessProbe.enabled Enable livenessProbe on RabbitMQ Messaging Topology Operator nodes
517 ## @param msgTopologyOperator.livenessProbe.initialDelaySeconds Initial delay seconds for livenessProbe
518 ## @param msgTopologyOperator.livenessProbe.periodSeconds Period seconds for livenessProbe
519 ## @param msgTopologyOperator.livenessProbe.timeoutSeconds Timeout seconds for livenessProbe
520 ## @param msgTopologyOperator.livenessProbe.failureThreshold Failure threshold for livenessProbe
521 ## @param msgTopologyOperator.livenessProbe.successThreshold Success threshold for livenessProbe
522 ##
523 livenessProbe:
524 enabled: true
525 initialDelaySeconds: 5
526 periodSeconds: 30
527 timeoutSeconds: 5
528 successThreshold: 1
529 failureThreshold: 5
530 ## @param msgTopologyOperator.readinessProbe.enabled Enable readinessProbe on RabbitMQ Messaging Topology Operator nodes
531 ## @param msgTopologyOperator.readinessProbe.initialDelaySeconds Initial delay seconds for readinessProbe
532 ## @param msgTopologyOperator.readinessProbe.periodSeconds Period seconds for readinessProbe
533 ## @param msgTopologyOperator.readinessProbe.timeoutSeconds Timeout seconds for readinessProbe
534 ## @param msgTopologyOperator.readinessProbe.failureThreshold Failure threshold for readinessProbe
535 ## @param msgTopologyOperator.readinessProbe.successThreshold Success threshold for readinessProbe
536 ##
537 readinessProbe:
538 enabled: true
539 initialDelaySeconds: 5
540 periodSeconds: 30
541 timeoutSeconds: 5
542 successThreshold: 1
543 failureThreshold: 5
544 ## @param msgTopologyOperator.startupProbe.enabled Enable startupProbe on RabbitMQ Messaging Topology Operator nodes
545 ## @param msgTopologyOperator.startupProbe.initialDelaySeconds Initial delay seconds for startupProbe
546 ## @param msgTopologyOperator.startupProbe.periodSeconds Period seconds for startupProbe
547 ## @param msgTopologyOperator.startupProbe.timeoutSeconds Timeout seconds for startupProbe
548 ## @param msgTopologyOperator.startupProbe.failureThreshold Failure threshold for startupProbe
549 ## @param msgTopologyOperator.startupProbe.successThreshold Success threshold for startupProbe
550 ##
551 startupProbe:
552 enabled: false
553 initialDelaySeconds: 5
554 periodSeconds: 30
555 timeoutSeconds: 5
556 successThreshold: 1
557 failureThreshold: 5
558
559 ## @param msgTopologyOperator.customLivenessProbe Custom livenessProbe that overrides the default one
560 ##
561 customLivenessProbe: {}
562 ## @param msgTopologyOperator.customReadinessProbe Custom readinessProbe that overrides the default one
563 ##
564 customReadinessProbe: {}
565 ## @param msgTopologyOperator.customStartupProbe Custom startupProbe that overrides the default one
566 ##
567 customStartupProbe: {}
568
569 ## @param msgTopologyOperator.existingWebhookCertSecret name of a secret containing the certificates (use it to avoid certManager creating one)
570 ##
571 existingWebhookCertSecret: ""
572
573 ## @param msgTopologyOperator.existingWebhookCertCABundle PEM-encoded CA Bundle of the existing secret provided in existingWebhookCertSecret (only if useCertManager=false)
574 ##
575 existingWebhookCertCABundle: ""
576
577 ## RabbitMQ Messaging Topology Operator resource requests and limits
578 ## ref: https://kubernetes.io/docs/user-guide/compute-resources/
579 ## @param msgTopologyOperator.resources.limits The resources limits for the RabbitMQ Messaging Topology Operator containers
580 ## @param msgTopologyOperator.resources.requests The requested resources for the RabbitMQ Messaging Topology Operator containers
581 ##
582 resources:
583 limits: {}
584 requests: {}
585
586 ## Configure Pods Security Context
587 ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-pod
588 ## @param msgTopologyOperator.podSecurityContext.enabled Enabled RabbitMQ Messaging Topology Operator pods' Security Context
589 ## @param msgTopologyOperator.podSecurityContext.fsGroup Set RabbitMQ Messaging Topology Operator pod's Security Context fsGroup
590 ##
591 podSecurityContext:
592 enabled: true
593 fsGroup: 1001
594 ## Configure Container Security Context
595 ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-pod
596 ## @param msgTopologyOperator.containerSecurityContext.enabled Enabled RabbitMQ Messaging Topology Operator containers' Security Context
597 ## @param msgTopologyOperator.containerSecurityContext.runAsUser Set RabbitMQ Messaging Topology Operator containers' Security Context runAsUser
598 ## @param msgTopologyOperator.containerSecurityContext.runAsNonRoot Force running the container as non root
599 ## @param msgTopologyOperator.containerSecurityContext.readOnlyRootFilesystem mount / (root) as a readonly filesystem on Messaging Topology Operator
600 ##
601 containerSecurityContext:
602 enabled: true
603 runAsUser: 1001
604 runAsNonRoot: true
605 readOnlyRootFilesystem: true
606
607 ## @param msgTopologyOperator.fullnameOverride String to fully override rmqco.msgTopologyOperator.fullname template
608 ##
609 fullnameOverride: ""
610
611 ## @param msgTopologyOperator.command Override default container command (useful when using custom images)
612 ##
613 command: []
614 ## @param msgTopologyOperator.args Override default container args (useful when using custom images)
615 ##
616 args: []
617 ## @param msgTopologyOperator.hostAliases RabbitMQ Messaging Topology Operator pods host aliases
618 ## https://kubernetes.io/docs/concepts/services-networking/add-entries-to-pod-etc-hosts-with-host-aliases/
619 ##
620 hostAliases: []
621 ## @param msgTopologyOperator.podLabels Extra labels for RabbitMQ Messaging Topology Operator pods
622 ## ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/
623 ##
624 podLabels: {}
625 ## @param msgTopologyOperator.podAnnotations Annotations for RabbitMQ Messaging Topology Operator pods
626 ## ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations/
627 ##
628 podAnnotations: {}
629 ## @param msgTopologyOperator.podAffinityPreset Pod affinity preset. Ignored if `affinity` is set. Allowed values: `soft` or `hard`
630 ## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#inter-pod-affinity-and-anti-affinity
631 ##
632 podAffinityPreset: ""
633 ## @param msgTopologyOperator.podAntiAffinityPreset Pod anti-affinity preset. Ignored if `affinity` is set. Allowed values: `soft` or `hard`
634 ## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#inter-pod-affinity-and-anti-affinity
635 ##
636 podAntiAffinityPreset: soft
637 ## Node affinity preset
638 ## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#node-affinity
639 ##
640 nodeAffinityPreset:
641 ## @param msgTopologyOperator.nodeAffinityPreset.type Node affinity preset type. Ignored if `affinity` is set. Allowed values: `soft` or `hard`
642 ##
643 type: ""
644 ## @param msgTopologyOperator.nodeAffinityPreset.key Node label key to match. Ignored if `affinity` is set
645 ##
646 key: ""
647 ## @param msgTopologyOperator.nodeAffinityPreset.values Node label values to match. Ignored if `affinity` is set
648 ## E.g.
649 ## values:
650 ## - e2e-az1
651 ## - e2e-az2
652 ##
653 values: []
654 ## @param msgTopologyOperator.affinity Affinity for RabbitMQ Messaging Topology Operator pods assignment
655 ## ref: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/#affinity-and-anti-affinity
656 ## NOTE: `podAffinityPreset`, `podAntiAffinityPreset`, and `nodeAffinityPreset` will be ignored when it's set
657 ##
658 affinity: {}
659 ## @param msgTopologyOperator.nodeSelector Node labels for RabbitMQ Messaging Topology Operator pods assignment
660 ## ref: https://kubernetes.io/docs/user-guide/node-selection/
661 ##
662 nodeSelector: {}
663 ## @param msgTopologyOperator.tolerations Tolerations for RabbitMQ Messaging Topology Operator pods assignment
664 ## ref: https://kubernetes.io/docs/concepts/configuration/taint-and-toleration/
665 ##
666 tolerations: []
667 ## @param msgTopologyOperator.updateStrategy.type RabbitMQ Messaging Topology Operator statefulset strategy type
668 ## ref: https://kubernetes.io/docs/concepts/workloads/controllers/statefulset/#update-strategies
669 ##
670 updateStrategy:
671 ## StrategyType
672 ## Can be set to RollingUpdate or OnDelete
673 ##
674 type: RollingUpdate
675 ## @param msgTopologyOperator.priorityClassName RabbitMQ Messaging Topology Operator pods' priorityClassName
676 ##
677 priorityClassName: ""
678 ## @param msgTopologyOperator.lifecycleHooks for the RabbitMQ Messaging Topology Operator container(s) to automate configuration before or after startup
679 ##
680 lifecycleHooks: {}
681
682 ## @param msgTopologyOperator.containerPorts.metrics RabbitMQ Messaging Topology Operator container port (used for metrics)
683 ##
684 containerPorts:
685 metrics: 8080
686
687 ## @param msgTopologyOperator.extraEnvVars Array with extra environment variables to add to RabbitMQ Messaging Topology Operator nodes
688 ## e.g:
689 ## extraEnvVars:
690 ## - name: FOO
691 ## value: "bar"
692 ##
693 extraEnvVars: []
694 ## @param msgTopologyOperator.extraEnvVarsCM Name of existing ConfigMap containing extra env vars for RabbitMQ Messaging Topology Operator nodes
695 ##
696 extraEnvVarsCM: ""
697 ## @param msgTopologyOperator.extraEnvVarsSecret Name of existing Secret containing extra env vars for RabbitMQ Messaging Topology Operator nodes
698 ##
699 extraEnvVarsSecret: ""
700 ## @param msgTopologyOperator.extraVolumes Optionally specify extra list of additional volumes for the RabbitMQ Messaging Topology Operator pod(s)
701 ##
702 extraVolumes: []
703 ## @param msgTopologyOperator.extraVolumeMounts Optionally specify extra list of additional volumeMounts for the RabbitMQ Messaging Topology Operator container(s)
704 ##
705 extraVolumeMounts: []
706 ## @param msgTopologyOperator.sidecars Add additional sidecar containers to the RabbitMQ Messaging Topology Operator pod(s)
707 ## e.g:
708 ## sidecars:
709 ## - name: your-image-name
710 ## image: your-image
711 ## imagePullPolicy: Always
712 ## ports:
713 ## - name: portname
714 ## containerPort: 1234
715 ##
716 sidecars: []
717 ## @param msgTopologyOperator.initContainers Add additional init containers to the RabbitMQ Messaging Topology Operator pod(s)
718 ## ref: https://kubernetes.io/docs/concepts/workloads/pods/init-containers/
719 ## e.g:
720 ## initContainers:
721 ## - name: your-image-name
722 ## image: your-image
723 ## imagePullPolicy: Always
724 ## command: ['sh', '-c', 'echo "hello world"']
725 ##
726 initContainers: []
727
728 ## Webhook service parameters
729 ##
730 service:
731 ## @param msgTopologyOperator.service.type RabbitMQ Messaging Topology Operator webhook service type
732 ##
733 type: ClusterIP
734 ## @param msgTopologyOperator.service.ports.webhook RabbitMQ Messaging Topology Operator webhook service HTTP port
735 ##
736 ports:
737 webhook: 443
738 ## Node ports to expose
739 ## @param msgTopologyOperator.service.nodePorts.http Node port for HTTP
740 ## NOTE: choose port between <30000-32767>
741 ##
742 nodePorts:
743 http: ""
744 ## @param msgTopologyOperator.service.clusterIP RabbitMQ Messaging Topology Operator webhook service Cluster IP
745 ## e.g.:
746 ## clusterIP: None
747 ##
748 clusterIP: ""
749 ## @param msgTopologyOperator.service.loadBalancerIP RabbitMQ Messaging Topology Operator webhook service Load Balancer IP
750 ## ref: https://kubernetes.io/docs/concepts/services-networking/service/#type-loadbalancer
751 ##
752 loadBalancerIP: ""
753 ## @param msgTopologyOperator.service.extraPorts Extra ports to expose (normally used with the `sidecar` value)
754 ##
755 extraPorts: []
756 ## @param msgTopologyOperator.service.loadBalancerSourceRanges RabbitMQ Messaging Topology Operator webhook service Load Balancer sources
757 ## ref: https://kubernetes.io/docs/tasks/access-application-cluster/configure-cloud-provider-firewall/#restrict-access-for-loadbalancer-service
758 ## e.g:
759 ## loadBalancerSourceRanges:
760 ## - 10.10.10.0/24
761 ##
762 loadBalancerSourceRanges: []
763 ## @param msgTopologyOperator.service.externalTrafficPolicy RabbitMQ Messaging Topology Operator webhook service external traffic policy
764 ## ref https://kubernetes.io/docs/tasks/access-application-cluster/create-external-load-balancer/#preserving-the-client-source-ip
765 ##
766 externalTrafficPolicy: Cluster
767 ## @param msgTopologyOperator.service.annotations Additional custom annotations for RabbitMQ Messaging Topology Operator webhook service
768 ##
769 annotations: {}
770 ## @param msgTopologyOperator.service.sessionAffinity Session Affinity for Kubernetes service, can be "None" or "ClientIP"
771 ## If "ClientIP", consecutive client requests will be directed to the same Pod
772 ## ref: https://kubernetes.io/docs/concepts/services-networking/service/#virtual-ips-and-service-proxies
773 ##
774 sessionAffinity: None
775 ## @param msgTopologyOperator.service.sessionAffinityConfig Additional settings for the sessionAffinity
776 ## sessionAffinityConfig:
777 ## clientIP:
778 ## timeoutSeconds: 300
779 ##
780 sessionAffinityConfig: {}
781
782 ## RBAC configuration
783 ##
784 rbac:
785 ## @param msgTopologyOperator.rbac.create Specifies whether RBAC resources should be created
786 ##
787 create: true
788
789 ## ServiceAccount configuration
790 ##
791 serviceAccount:
792 ## @param msgTopologyOperator.serviceAccount.create Specifies whether a ServiceAccount should be created
793 ##
794 create: true
795 ## @param msgTopologyOperator.serviceAccount.name The name of the ServiceAccount to use.
796 ## If not set and create is true, a name is generated using the common.names.fullname template
797 ##
798 name: ""
799 ## @param msgTopologyOperator.serviceAccount.annotations Add annotations
800 ##
801 annotations: {}
802 ## @param msgTopologyOperator.serviceAccount.automountServiceAccountToken Automount API credentials for a service account.
803 ##
804 automountServiceAccountToken: true
805
806 ## @section RabbitMQ Messaging Topology Operator parameters
807 ##
808 metrics:
809 ## @param msgTopologyOperator.metrics.enabled Create a service for accessing the metrics endpoint
810 ##
811 enabled: false
812 ## Metrics service parameters
813 ##
814 service:
815 ## @param msgTopologyOperator.metrics.service.type RabbitMQ Cluster Operator metrics service type
816 ##
817 type: ClusterIP
818 ## @param msgTopologyOperator.metrics.service.ports.http RabbitMQ Cluster Operator metrics service HTTP port
819 ##
820 ports:
821 http: 80
822 ## Node ports to expose
823 ## @param msgTopologyOperator.metrics.service.nodePorts.http Node port for HTTP
824 ## NOTE: choose port between <30000-32767>
825 ##
826 nodePorts:
827 http: ""
828 ## @param msgTopologyOperator.metrics.service.clusterIP RabbitMQ Cluster Operator metrics service Cluster IP
829 ## e.g.:
830 ## clusterIP: None
831 ##
832 clusterIP: ""
833 ## @param msgTopologyOperator.metrics.service.extraPorts Extra ports to expose (normally used with the `sidecar` value)
834 ##
835 extraPorts: []
836 ## @param msgTopologyOperator.metrics.service.loadBalancerIP RabbitMQ Cluster Operator metrics service Load Balancer IP
837 ## ref: https://kubernetes.io/docs/concepts/services-networking/service/#type-loadbalancer
838 ##
839 loadBalancerIP: ""
840 ## @param msgTopologyOperator.metrics.service.loadBalancerSourceRanges RabbitMQ Cluster Operator metrics service Load Balancer sources
841 ## ref: https://kubernetes.io/docs/tasks/access-application-cluster/configure-cloud-provider-firewall/#restrict-access-for-loadbalancer-service
842 ## e.g:
843 ## loadBalancerSourceRanges:
844 ## - 10.10.10.0/24
845 ##
846 loadBalancerSourceRanges: []
847 ## @param msgTopologyOperator.metrics.service.externalTrafficPolicy RabbitMQ Cluster Operator metrics service external traffic policy
848 ## ref https://kubernetes.io/docs/tasks/access-application-cluster/create-external-load-balancer/#preserving-the-client-source-ip
849 ##
850 externalTrafficPolicy: Cluster
851 ## @param msgTopologyOperator.metrics.service.annotations [object] Additional custom annotations for RabbitMQ Cluster Operator metrics service
852 ##
853 annotations:
854 prometheus.io/scrape: "true"
855 prometheus.io/port: "{{ .Values.msgTopologyOperator.metrics.service.ports.http }}"
856 ## @param msgTopologyOperator.metrics.service.sessionAffinity Session Affinity for Kubernetes service, can be "None" or "ClientIP"
857 ## If "ClientIP", consecutive client requests will be directed to the same Pod
858 ## ref: https://kubernetes.io/docs/concepts/services-networking/service/#virtual-ips-and-service-proxies
859 ##
860 sessionAffinity: None
861 ## @param msgTopologyOperator.metrics.service.sessionAffinityConfig Additional settings for the sessionAffinity
862 ## sessionAffinityConfig:
863 ## clientIP:
864 ## timeoutSeconds: 300
865 ##
866 sessionAffinityConfig: {}
867 serviceMonitor:
868 ## @param msgTopologyOperator.metrics.serviceMonitor.enabled Specify if a servicemonitor will be deployed for prometheus-operator
869 ##
870 enabled: false
871 ## @param msgTopologyOperator.metrics.serviceMonitor.namespace Namespace which Prometheus is running in
872 ## e.g:
873 ## namespace: monitoring
874 ##
875 namespace: ""
876 ## @param msgTopologyOperator.metrics.serviceMonitor.jobLabel Specify the jobLabel to use for the prometheus-operator
877 ##
878 jobLabel: app.kubernetes.io/name
879
880 ## DEPRECATED: Use msgTopologyOperator.metrics.serviceMonitor.labels instead.
881 ## This value will be removed in a future release
882 ## additionalLabels: {}
883
884 ## @param msgTopologyOperator.metrics.serviceMonitor.selector Prometheus instance selector labels
885 ## ref: https://github.com/bitnami/charts/tree/master/bitnami/prometheus-operator#prometheus-configuration
886 ## e.g:
887 ## selector:
888 ## prometheus: my-prometheus
889 ##
890 selector: {}
891 ## @param msgTopologyOperator.metrics.serviceMonitor.honorLabels Honor metrics labels
892 ## ref: https://github.com/coreos/prometheus-operator/blob/master/Documentation/api.md#endpoint
893 ##
894 honorLabels: false
895 ## @param msgTopologyOperator.metrics.serviceMonitor.scrapeTimeout Timeout after which the scrape is ended
896 ## ref: https://github.com/coreos/prometheus-operator/blob/master/Documentation/api.md#endpoint
897 ## e.g:
898 ## scrapeTimeout: 10s
899 ##
900 scrapeTimeout: ""
901 ## @param msgTopologyOperator.metrics.serviceMonitor.interval Scrape interval. If not set, the Prometheus default scrape interval is used
902 ##
903 interval: ""
904 ## @param msgTopologyOperator.metrics.serviceMonitor.metricRelabelings Specify additional relabeling of metrics
905 ##
906 metricRelabelings: []
907 ## @param msgTopologyOperator.metrics.serviceMonitor.relabelings Specify general relabeling
908 ##
909 relabelings: []
910 ## @param msgTopologyOperator.metrics.serviceMonitor.labels Extra labels for the ServiceMonitor
911 ##
912 labels: {}
913
914## @section cert-manager parameters
915##
916
917## @param useCertManager Deploy cert-manager objects (Issuer and Certificate) for webhooks
918##
919useCertManager: false