1# This file has been modified by Chainguard, Inc.
3# Copyright Chainguard, Inc. All Rights Reserved.
4# Chainguard, Inc. modifications are subject to the license
5# available at: https://www.chainguard.dev/legal/software-license-agreement
7# Copyright Broadcom, Inc. All Rights Reserved.
8# SPDX-License-Identifier: APACHE-2.0
10## @section Global parameters
11## Global Docker image parameters
12## Please, note that this will override the image parameters, including dependencies, configured to use the global value
13## Current available global Docker image parameters: imageRegistry, imagePullSecrets and storageClass
16## @param global.imageRegistry Global Docker image registry
17## @param global.imagePullSecrets Global Docker registry secret names as an array
18## @param global.defaultStorageClass Global default StorageClass for Persistent Volume(s)
19## @param global.storageClass DEPRECATED: use global.defaultStorageClass instead
25 ## - myRegistryKeySecretName
28 defaultStorageClass: ""
30 ## Security parameters
33 ## @param global.security.allowInsecureImages Allows skipping image verification
34 allowInsecureImages: false
35 ## Compatibility adaptations for Kubernetes platforms
38 ## Compatibility adaptations for Openshift
41 ## @param global.compatibility.openshift.adaptSecurityContext Adapt the securityContext sections of the deployment to make them compatible with Openshift restricted-v2 SCC: remove runAsUser, runAsGroup and fsGroup and let the platform use their allowed default IDs. Possible values: auto (apply if the detected running cluster is Openshift), force (perform the adaptation always), disabled (do not perform adaptation)
43 adaptSecurityContext: auto
45## @section Common parameters
48## @param kubeVersion Override Kubernetes version
51## @param nameOverride String to partially override common.names.fullname
54## @param fullnameOverride String to fully override common.names.fullname
57## @param commonLabels Labels to add to all deployed objects
60## @param commonAnnotations Annotations to add to all deployed objects
63## @param clusterDomain Kubernetes cluster domain name
65clusterDomain: cluster.local
66## @param extraDeploy Array of extra objects to deploy with the release
69## Enable diagnostic mode in the deployment(s)/statefulset(s)
72 ## @param diagnosticMode.enabled Enable diagnostic mode (all probes will be disabled)
75## @section RabbitMQ Cluster Operator Parameters
78## Iamguarded RabbitMQ Image
79## @param rabbitmqImage.registry [default: REGISTRY_NAME] RabbitMQ Image registry
80## @param rabbitmqImage.repository [default: REPOSITORY_NAME/rabbitmq] RabbitMQ Image repository
81## @skip rabbitmqImage.tag RabbitMQ Image tag (immutable tags are recommended)
82## @param rabbitmqImage.digest RabbitMQ image digest in the way sha256:aa.... Please note this parameter, if set, will override the tag
83## @param rabbitmqImage.pullSecrets RabbitMQ Image pull secrets
87 repository: chainguard-private/rabbitmq-iamguarded
90 ## Optionally specify an array of imagePullSecrets.
91 ## Secrets must be manually created in the namespace.
92 ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/pull-rabbitmqImage-private-registry/
95 ## - myRegistryKeySecretName
98## Iamguarded RabbitMQ Default User Credential Updater Image
99## @param credentialUpdaterImage.registry [default: REGISTRY_NAME] RabbitMQ Default User Credential Updater image registry
100## @param credentialUpdaterImage.repository [default: REPOSITORY_NAME/rmq-default-credential-updater] RabbitMQ Default User Credential Updater image repository
101## @skip credentialUpdaterImage.tag RabbitMQ Default User Credential Updater image tag (immutable tags are recommended)
102## @param credentialUpdaterImage.digest RabbitMQ Default User Credential Updater image digest in the way sha256:aa.... Please note this parameter, if set, will override the tag
103## @param credentialUpdaterImage.pullSecrets RabbitMQ Default User Credential Updater image pull secrets
105credentialUpdaterImage:
107 repository: chainguard-private/rabbitmq-default-user-credential-updater-iamguarded
110 ## Optionally specify an array of imagePullSecrets.
111 ## Secrets must be manually created in the namespace.
112 ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/pull-credentialUpdaterImage-private-registry/
115 ## - myRegistryKeySecretName
119 ## Iamguarded RabbitMQ Cluster Operator image
120 ## @param clusterOperator.image.registry [default: REGISTRY_NAME] RabbitMQ Cluster Operator image registry
121 ## @param clusterOperator.image.repository [default: REPOSITORY_NAME/rabbitmq-cluster-operator] RabbitMQ Cluster Operator image repository
122 ## @skip clusterOperator.image.tag RabbitMQ Cluster Operator image tag (immutable tags are recommended)
123 ## @param clusterOperator.image.digest RabbitMQ Cluster Operator image digest in the way sha256:aa.... Please note this parameter, if set, will override the tag
124 ## @param clusterOperator.image.pullPolicy RabbitMQ Cluster Operator image pull policy
125 ## @param clusterOperator.image.pullSecrets RabbitMQ Cluster Operator image pull secrets
129 repository: chainguard-private/rabbitmq-cluster-operator-iamguarded
132 ## Specify a imagePullPolicy
133 ## ref: https://kubernetes.io/docs/concepts/containers/images/#pre-pulled-images
135 pullPolicy: IfNotPresent
136 ## Optionally specify an array of imagePullSecrets.
137 ## Secrets must be manually created in the namespace.
138 ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/pull-image-private-registry/
141 ## - myRegistryKeySecretName
144 ## @param clusterOperator.revisionHistoryLimit sets number of replicaset to keep in k8s
146 revisionHistoryLimit: 10
147 ## @param clusterOperator.watchAllNamespaces Watch for resources in all namespaces
149 watchAllNamespaces: true
150 ## @param clusterOperator.watchNamespaces [array] Watch for resources in the given namespaces (ignored if watchAllNamespaces=true)
153 ## @param clusterOperator.replicaCount Number of RabbitMQ Cluster Operator replicas to deploy
156 ## @param clusterOperator.schedulerName Alternative scheduler
159 ## @param clusterOperator.topologySpreadConstraints Topology Spread Constraints for pod assignment
160 ## https://kubernetes.io/docs/concepts/workloads/pods/pod-topology-spread-constraints/
161 ## The value is evaluated as a template
163 topologySpreadConstraints: []
164 ## @param clusterOperator.terminationGracePeriodSeconds In seconds, time the given to the %%MAIN_CONTAINER_NAME%% pod needs to terminate gracefully
165 ## ref: https://kubernetes.io/docs/concepts/workloads/pods/pod/#termination-of-pods
167 terminationGracePeriodSeconds: ""
168 ## Configure extra options for RabbitMQ Cluster Operator containers' liveness and readiness probes
169 ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-probes/#configure-probes
170 ## @param clusterOperator.livenessProbe.enabled Enable livenessProbe on RabbitMQ Cluster Operator nodes
171 ## @param clusterOperator.livenessProbe.initialDelaySeconds Initial delay seconds for livenessProbe
172 ## @param clusterOperator.livenessProbe.periodSeconds Period seconds for livenessProbe
173 ## @param clusterOperator.livenessProbe.timeoutSeconds Timeout seconds for livenessProbe
174 ## @param clusterOperator.livenessProbe.failureThreshold Failure threshold for livenessProbe
175 ## @param clusterOperator.livenessProbe.successThreshold Success threshold for livenessProbe
179 initialDelaySeconds: 5
184 ## @param clusterOperator.readinessProbe.enabled Enable readinessProbe on RabbitMQ Cluster Operator nodes
185 ## @param clusterOperator.readinessProbe.initialDelaySeconds Initial delay seconds for readinessProbe
186 ## @param clusterOperator.readinessProbe.periodSeconds Period seconds for readinessProbe
187 ## @param clusterOperator.readinessProbe.timeoutSeconds Timeout seconds for readinessProbe
188 ## @param clusterOperator.readinessProbe.failureThreshold Failure threshold for readinessProbe
189 ## @param clusterOperator.readinessProbe.successThreshold Success threshold for readinessProbe
193 initialDelaySeconds: 5
198 ## @param clusterOperator.startupProbe.enabled Enable startupProbe on RabbitMQ Cluster Operator nodes
199 ## @param clusterOperator.startupProbe.initialDelaySeconds Initial delay seconds for startupProbe
200 ## @param clusterOperator.startupProbe.periodSeconds Period seconds for startupProbe
201 ## @param clusterOperator.startupProbe.timeoutSeconds Timeout seconds for startupProbe
202 ## @param clusterOperator.startupProbe.failureThreshold Failure threshold for startupProbe
203 ## @param clusterOperator.startupProbe.successThreshold Success threshold for startupProbe
207 initialDelaySeconds: 5
212 ## @param clusterOperator.customLivenessProbe Custom livenessProbe that overrides the default one
214 customLivenessProbe: {}
215 ## @param clusterOperator.customReadinessProbe Custom readinessProbe that overrides the default one
217 customReadinessProbe: {}
218 ## @param clusterOperator.customStartupProbe Custom startupProbe that overrides the default one
220 customStartupProbe: {}
221 ## RabbitMQ Cluster Operator resource requests and limits
222 ## ref: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/
223 ## @param clusterOperator.resourcesPreset Set container resources according to one common preset (allowed values: none, nano, micro, small, medium, large, xlarge, 2xlarge). This is ignored if clusterOperator.resources is set (clusterOperator.resources is recommended for production).
225 resourcesPreset: "nano"
226 ## @param clusterOperator.resources Set container requests and limits for different resources like CPU or memory (essential for production workloads)
237 ## Pod Disruption Budget configuration
238 ## ref: https://kubernetes.io/docs/tasks/run-application/configure-pdb/
239 ## @param clusterOperator.pdb.create Enable a Pod Disruption Budget creation
240 ## @param clusterOperator.pdb.minAvailable Minimum number/percentage of pods that should remain scheduled
241 ## @param clusterOperator.pdb.maxUnavailable Maximum number/percentage of pods that may be made unavailable
247 ## Configure Pods Security Context
248 ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-pod
249 ## @param clusterOperator.podSecurityContext.enabled Enabled RabbitMQ Cluster Operator pods' Security Context
250 ## @param clusterOperator.podSecurityContext.fsGroupChangePolicy Set filesystem group change policy
251 ## @param clusterOperator.podSecurityContext.sysctls Set kernel settings using the sysctl interface
252 ## @param clusterOperator.podSecurityContext.supplementalGroups Set filesystem extra groups
253 ## @param clusterOperator.podSecurityContext.fsGroup Set RabbitMQ Cluster Operator pod's Security Context fsGroup
257 fsGroupChangePolicy: Always
259 supplementalGroups: []
261 ## Configure Container Security Context
262 ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-pod
263 ## @param clusterOperator.containerSecurityContext.enabled Enabled containers' Security Context
264 ## @param clusterOperator.containerSecurityContext.seLinuxOptions [object,nullable] Set SELinux options in container
265 ## @param clusterOperator.containerSecurityContext.runAsUser Set containers' Security Context runAsUser
266 ## @param clusterOperator.containerSecurityContext.runAsGroup Set containers' Security Context runAsGroup
267 ## @param clusterOperator.containerSecurityContext.runAsNonRoot Set container's Security Context runAsNonRoot
268 ## @param clusterOperator.containerSecurityContext.privileged Set container's Security Context privileged
269 ## @param clusterOperator.containerSecurityContext.readOnlyRootFilesystem Set container's Security Context readOnlyRootFilesystem
270 ## @param clusterOperator.containerSecurityContext.allowPrivilegeEscalation Set container's Security Context allowPrivilegeEscalation
271 ## @param clusterOperator.containerSecurityContext.capabilities.drop List of capabilities to be dropped
272 ## @param clusterOperator.containerSecurityContext.seccompProfile.type Set container's Security Context seccomp profile
274 containerSecurityContext:
281 readOnlyRootFilesystem: true
282 allowPrivilegeEscalation: false
286 type: "RuntimeDefault"
287 ## @param clusterOperator.command Override default container command (useful when using custom images)
290 ## @param clusterOperator.args Override default container args (useful when using custom images)
293 ## @param clusterOperator.automountServiceAccountToken Mount Service Account token in pod
295 automountServiceAccountToken: true
296 ## @param clusterOperator.hostAliases RabbitMQ Cluster Operator pods host aliases
297 ## https://kubernetes.io/docs/concepts/services-networking/add-entries-to-pod-etc-hosts-with-host-aliases/
300 ## @param clusterOperator.podLabels Extra labels for RabbitMQ Cluster Operator pods
301 ## ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/
304 ## @param clusterOperator.podAnnotations Annotations for RabbitMQ Cluster Operator pods
305 ## ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations/
308 ## @param clusterOperator.podAffinityPreset Pod affinity preset. Ignored if `affinity` is set. Allowed values: `soft` or `hard`
309 ## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#inter-pod-affinity-and-anti-affinity
311 podAffinityPreset: ""
312 ## @param clusterOperator.podAntiAffinityPreset Pod anti-affinity preset. Ignored if `affinity` is set. Allowed values: `soft` or `hard`
313 ## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#inter-pod-affinity-and-anti-affinity
315 podAntiAffinityPreset: soft
316 ## Node affinity preset
317 ## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#node-affinity
320 ## @param clusterOperator.nodeAffinityPreset.type Node affinity preset type. Ignored if `affinity` is set. Allowed values: `soft` or `hard`
323 ## @param clusterOperator.nodeAffinityPreset.key Node label key to match. Ignored if `affinity` is set
326 ## @param clusterOperator.nodeAffinityPreset.values Node label values to match. Ignored if `affinity` is set
333 ## @param clusterOperator.affinity Affinity for RabbitMQ Cluster Operator pods assignment
334 ## ref: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/#affinity-and-anti-affinity
335 ## NOTE: `podAffinityPreset`, `podAntiAffinityPreset`, and `nodeAffinityPreset` will be ignored when it's set
338 ## @param clusterOperator.nodeSelector Node labels for RabbitMQ Cluster Operator pods assignment
339 ## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/
342 ## @param clusterOperator.tolerations Tolerations for RabbitMQ Cluster Operator pods assignment
343 ## ref: https://kubernetes.io/docs/concepts/configuration/taint-and-toleration/
346 ## @param clusterOperator.updateStrategy.type RabbitMQ Cluster Operator statefulset strategy type
347 ## ref: https://kubernetes.io/docs/concepts/workloads/controllers/statefulset/#update-strategies
351 ## Can be set to RollingUpdate or OnDelete
354 ## @param clusterOperator.priorityClassName RabbitMQ Cluster Operator pods' priorityClassName
356 priorityClassName: ""
357 ## @param clusterOperator.lifecycleHooks for the RabbitMQ Cluster Operator container(s) to automate configuration before or after startup
360 ## @param clusterOperator.containerPorts.metrics RabbitMQ Cluster Operator container port (used for metrics)
361 ## @param clusterOperator.containerPorts.webhook RabbitMQ Cluster Operator container port (used for the admission webhook server)
366 ## Cluster Operator admission webhook service parameters (operator >= 2.22.0)
369 ## @param clusterOperator.service.ports.webhook RabbitMQ Cluster Operator webhook service port
373 ## @param clusterOperator.existingWebhookCertSecret name of a secret containing the webhook certificates (use it to avoid the chart/cert-manager creating one)
375 existingWebhookCertSecret: ""
376 ## @param clusterOperator.existingWebhookCertCABundle PEM-encoded CA Bundle of the existing secret provided in existingWebhookCertSecret (only if useCertManager=false)
378 existingWebhookCertCABundle: ""
379 ## @param clusterOperator.extraEnvVars Array with extra environment variables to add to RabbitMQ Cluster Operator nodes
386 ## @param clusterOperator.extraEnvVarsCM Name of existing ConfigMap containing extra env vars for RabbitMQ Cluster Operator nodes
389 ## @param clusterOperator.extraEnvVarsSecret Name of existing Secret containing extra env vars for RabbitMQ Cluster Operator nodes
391 extraEnvVarsSecret: ""
392 ## @param clusterOperator.extraVolumes Optionally specify extra list of additional volumes for the RabbitMQ Cluster Operator pod(s)
395 ## @param clusterOperator.extraVolumeMounts Optionally specify extra list of additional volumeMounts for the RabbitMQ Cluster Operator container(s)
397 extraVolumeMounts: []
398 ## @param clusterOperator.sidecars Add additional sidecar containers to the RabbitMQ Cluster Operator pod(s)
401 ## - name: your-image-name
403 ## imagePullPolicy: Always
406 ## containerPort: 1234
409 ## @param clusterOperator.initContainers Add additional init containers to the RabbitMQ Cluster Operator pod(s)
410 ## ref: https://kubernetes.io/docs/concepts/workloads/pods/init-containers/
413 ## - name: your-image-name
415 ## imagePullPolicy: Always
416 ## command: ['sh', '-c', 'echo "hello world"']
420 ## Ref: https://kubernetes.io/docs/concepts/services-networking/network-policies/
423 ## @param clusterOperator.networkPolicy.enabled Specifies whether a NetworkPolicy should be created
426 ## @param clusterOperator.networkPolicy.kubeAPIServerPorts [array] List of possible endpoints to kube-apiserver (limit to your cluster settings to increase security)
428 kubeAPIServerPorts: [443, 6443, 8443]
429 ## @param clusterOperator.networkPolicy.allowExternal Don't require injector label for connections
430 ## The Policy model to apply. When set to false, only pods with the correct
431 ## injector label will have network access to the ports injector is listening
432 ## on. When true, injector will accept connections from any source
433 ## (with the correct destination port).
436 ## @param clusterOperator.networkPolicy.allowExternalEgress Allow the pod to access any range of port and all destinations.
438 allowExternalEgress: true
439 ## @param clusterOperator.networkPolicy.extraIngress [array] Add extra ingress rules to the NetworkPolicy
449 ## - matchExpressions:
455 ## @param clusterOperator.networkPolicy.extraEgress [array] Add extra ingress rules to the NetworkPolicy
465 ## - matchExpressions:
472 ## @param clusterOperator.networkPolicy.ingressNSMatchLabels [object] Labels to match to allow traffic from other namespaces
473 ## @param clusterOperator.networkPolicy.ingressNSPodMatchLabels [object] Pod labels to match to allow traffic from other namespaces
475 ingressNSMatchLabels: {}
476 ingressNSPodMatchLabels: {}
477 ## RBAC configuration
480 ## @param clusterOperator.rbac.create Specifies whether RBAC resources should be created
483 ## ClusterRole parameters
486 ## @param clusterOperator.rbac.clusterRole.customRules Define custom access rules for the ClusterRole
487 ## ref: https://kubernetes.io/docs/reference/access-authn-authz/rbac/#role-and-clusterrole
490 ## - apiGroups: A list of API groups (e.g., [""], ["apps"]).
491 ## - resources: A list of resource names (e.g., ["configmaps", "pods"]).
492 ## - verbs: A list of allowed access verbs (e.g., ["create", "get", "list"]).
494 ## @param clusterOperator.rbac.clusterRole.extraRules Define extra access rules for the ClusterRole. This has no effect if customerRules is a non-empty array.
495 ## ref: https://kubernetes.io/docs/reference/access-authn-authz/rbac/#role-and-clusterrole
498 ## - apiGroups: A list of API groups (e.g., [""], ["apps"]).
499 ## - resources: A list of resource names (e.g., ["configmaps", "pods"]).
500 ## - verbs: A list of allowed access verbs (e.g., ["create", "get", "list"]).
502 ## ServiceAccount configuration
505 ## @param clusterOperator.serviceAccount.create Specifies whether a ServiceAccount should be created
508 ## @param clusterOperator.serviceAccount.name The name of the ServiceAccount to use.
509 ## If not set and create is true, a name is generated using the common.names.fullname template
512 ## @param clusterOperator.serviceAccount.annotations Add annotations
515 ## @param clusterOperator.serviceAccount.automountServiceAccountToken Automount API credentials for a service account.
517 automountServiceAccountToken: false
518 ## @section RabbitMQ Cluster Operator Metrics parameters
521 ## Metrics service parameters
524 ## @param clusterOperator.metrics.service.enabled Create a service for accessing the metrics endpoint
527 ## @param clusterOperator.metrics.service.type RabbitMQ Cluster Operator metrics service type
530 ## @param clusterOperator.metrics.service.ports.http RabbitMQ Cluster Operator metrics service HTTP port
534 ## Node ports to expose
535 ## @param clusterOperator.metrics.service.nodePorts.http Node port for HTTP
536 ## NOTE: choose port between <30000-32767>
540 ## @param clusterOperator.metrics.service.clusterIP RabbitMQ Cluster Operator metrics service Cluster IP
545 ## @param clusterOperator.metrics.service.extraPorts Extra ports to expose (normally used with the `sidecar` value)
548 ## @param clusterOperator.metrics.service.loadBalancerIP RabbitMQ Cluster Operator metrics service Load Balancer IP
549 ## ref: https://kubernetes.io/docs/concepts/services-networking/service/#type-loadbalancer
552 ## @param clusterOperator.metrics.service.loadBalancerSourceRanges RabbitMQ Cluster Operator metrics service Load Balancer sources
553 ## ref: https://kubernetes.io/docs/tasks/access-application-cluster/configure-cloud-provider-firewall/#restrict-access-for-loadbalancer-service
555 ## loadBalancerSourceRanges:
558 loadBalancerSourceRanges: []
559 ## @param clusterOperator.metrics.service.externalTrafficPolicy RabbitMQ Cluster Operator metrics service external traffic policy
560 ## ref https://kubernetes.io/docs/tasks/access-application-cluster/create-external-load-balancer/#preserving-the-client-source-ip
562 externalTrafficPolicy: Cluster
563 ## @param clusterOperator.metrics.service.annotations [object] Additional custom annotations for RabbitMQ Cluster Operator metrics service
566 prometheus.io/scrape: "true"
567 prometheus.io/port: "{{ .Values.clusterOperator.metrics.service.ports.http }}"
568 ## @param clusterOperator.metrics.service.sessionAffinity Session Affinity for Kubernetes service, can be "None" or "ClientIP"
569 ## If "ClientIP", consecutive client requests will be directed to the same Pod
570 ## ref: https://kubernetes.io/docs/concepts/services-networking/service/#virtual-ips-and-service-proxies
572 sessionAffinity: None
573 ## @param clusterOperator.metrics.service.sessionAffinityConfig Additional settings for the sessionAffinity
574 ## sessionAffinityConfig:
576 ## timeoutSeconds: 300
578 sessionAffinityConfig: {}
580 ## @param clusterOperator.metrics.serviceMonitor.enabled Specify if a servicemonitor will be deployed for prometheus-operator
583 ## @param clusterOperator.metrics.serviceMonitor.namespace Namespace which Prometheus is running in
585 ## namespace: monitoring
588 ## @param clusterOperator.metrics.serviceMonitor.jobLabel Specify the jobLabel to use for the prometheus-operator
590 jobLabel: app.kubernetes.io/name
591 ## @param clusterOperator.metrics.serviceMonitor.honorLabels Honor metrics labels
592 ## ref: https://github.com/coreos/prometheus-operator/blob/master/Documentation/api.md#endpoint
595 ## @param clusterOperator.metrics.serviceMonitor.selector Prometheus instance selector labels
598 ## prometheus: my-prometheus
601 ## @param clusterOperator.metrics.serviceMonitor.scrapeTimeout Timeout after which the scrape is ended
602 ## ref: https://github.com/coreos/prometheus-operator/blob/master/Documentation/api.md#endpoint
604 ## scrapeTimeout: 10s
607 ## @param clusterOperator.metrics.serviceMonitor.interval Scrape interval. If not set, the Prometheus default scrape interval is used
610 ## DEPRECATED: Use clusterOperator.metrics.serviceMonitor.labels instead
611 ## This value will be removed in a future release
612 ## additionalLabels: {}
614 ## @param clusterOperator.metrics.serviceMonitor.metricRelabelings Specify additional relabeling of metrics
616 metricRelabelings: []
617 ## @param clusterOperator.metrics.serviceMonitor.relabelings Specify general relabeling
620 ## @param clusterOperator.metrics.serviceMonitor.labels Extra labels for the ServiceMonitor
623 ## @param clusterOperator.metrics.serviceMonitor.path Define the path used by ServiceMonitor to scrap metrics
624 ## Could be /metrics for aggregated metrics or /metrics/per-object for more details
627 ## @param clusterOperator.metrics.serviceMonitor.params Define the HTTP URL parameters used by ServiceMonitor
631 ## @param clusterOperator.metrics.podMonitor.enabled Create PodMonitor Resource for scraping metrics using PrometheusOperator
634 ## @param clusterOperator.metrics.podMonitor.jobLabel Specify the jobLabel to use for the prometheus-operator
636 jobLabel: app.kubernetes.io/name
637 ## @param clusterOperator.metrics.podMonitor.namespace Namespace which Prometheus is running in
640 ## @param clusterOperator.metrics.podMonitor.honorLabels Honor metrics labels
643 ## @param clusterOperator.metrics.podMonitor.selector Prometheus instance selector labels
645 ## @param clusterOperator.metrics.podMonitor.interval Specify the interval at which metrics should be scraped
648 ## @param clusterOperator.metrics.podMonitor.scrapeTimeout Specify the timeout after which the scrape is ended
651 ## @param clusterOperator.metrics.podMonitor.additionalLabels [object] Additional labels that can be used so PodMonitors will be discovered by Prometheus
654 ## @param clusterOperator.metrics.podMonitor.path Define HTTP path to scrape for metrics.
657 ## @param clusterOperator.metrics.podMonitor.relabelings Specify general relabeling
660 ## @param clusterOperator.metrics.podMonitor.metricRelabelings Specify additional relabeling of metrics
662 metricRelabelings: []
663 ## @param clusterOperator.metrics.podMonitor.params Define the HTTP URL parameters used by PodMonitor
666## @section RabbitMQ Messaging Topology Operator Parameters
669 ## @param msgTopologyOperator.enabled Deploy RabbitMQ Messaging Topology Operator as part of the installation
672 ## Iamguarded RabbitMQ Messaging Topology Operator image
673 ## @param msgTopologyOperator.image.registry [default: REGISTRY_NAME] RabbitMQ Messaging Topology Operator image registry
674 ## @param msgTopologyOperator.image.repository [default: REPOSITORY_NAME/rmq-messaging-topology-operator] RabbitMQ Messaging Topology Operator image repository
675 ## @skip msgTopologyOperator.image.tag RabbitMQ Messaging Topology Operator image tag (immutable tags are recommended)
676 ## @param msgTopologyOperator.image.digest RabbitMQ Messaging Topology Operator image digest in the way sha256:aa.... Please note this parameter, if set, will override the tag
677 ## @param msgTopologyOperator.image.pullPolicy RabbitMQ Messaging Topology Operator image pull policy
678 ## @param msgTopologyOperator.image.pullSecrets RabbitMQ Messaging Topology Operator image pull secrets
682 repository: chainguard-private/rabbitmq-messaging-topology-operator-iamguarded
685 ## Specify a imagePullPolicy
686 ## ref: https://kubernetes.io/docs/concepts/containers/images/#pre-pulled-images
688 pullPolicy: IfNotPresent
689 ## Optionally specify an array of imagePullSecrets.
690 ## Secrets must be manually created in the namespace.
691 ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/pull-image-private-registry/
694 ## - myRegistryKeySecretName
697 ## @param msgTopologyOperator.revisionHistoryLimit sets number of replicaset to keep in k8s
699 revisionHistoryLimit: 10
700 ## @param msgTopologyOperator.watchAllNamespaces Watch for resources in all namespaces
702 watchAllNamespaces: true
703 ## @param msgTopologyOperator.watchNamespaces [array] Watch for resources in the given namespaces ## @param clusterOperator.watchNamespaces [array] Watch for resources in the given namespaces (ignored if watchAllNamespaces=true)
706 ## @param msgTopologyOperator.replicaCount Number of RabbitMQ Messaging Topology Operator replicas to deploy
709 ## @param msgTopologyOperator.topologySpreadConstraints Topology Spread Constraints for pod assignment
710 ## https://kubernetes.io/docs/concepts/workloads/pods/pod-topology-spread-constraints/
711 ## The value is evaluated as a template
713 topologySpreadConstraints: []
714 ## @param msgTopologyOperator.schedulerName Alternative scheduler
717 ## @param msgTopologyOperator.terminationGracePeriodSeconds In seconds, time the given to the %%MAIN_CONTAINER_NAME%% pod needs to terminate gracefully
718 ## ref: https://kubernetes.io/docs/concepts/workloads/pods/pod/#termination-of-pods
720 terminationGracePeriodSeconds: ""
721 ## @param msgTopologyOperator.hostNetwork Boolean
724 ## @param msgTopologyOperator.dnsPolicy Alternative DNS policy
726 dnsPolicy: "ClusterFirst"
727 ## Configure extra options for RabbitMQ Messaging Topology Operator containers' liveness and readiness probes
728 ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-probes/#configure-probes
729 ## @param msgTopologyOperator.livenessProbe.enabled Enable livenessProbe on RabbitMQ Messaging Topology Operator nodes
730 ## @param msgTopologyOperator.livenessProbe.initialDelaySeconds Initial delay seconds for livenessProbe
731 ## @param msgTopologyOperator.livenessProbe.periodSeconds Period seconds for livenessProbe
732 ## @param msgTopologyOperator.livenessProbe.timeoutSeconds Timeout seconds for livenessProbe
733 ## @param msgTopologyOperator.livenessProbe.failureThreshold Failure threshold for livenessProbe
734 ## @param msgTopologyOperator.livenessProbe.successThreshold Success threshold for livenessProbe
738 initialDelaySeconds: 5
743 ## @param msgTopologyOperator.readinessProbe.enabled Enable readinessProbe on RabbitMQ Messaging Topology Operator nodes
744 ## @param msgTopologyOperator.readinessProbe.initialDelaySeconds Initial delay seconds for readinessProbe
745 ## @param msgTopologyOperator.readinessProbe.periodSeconds Period seconds for readinessProbe
746 ## @param msgTopologyOperator.readinessProbe.timeoutSeconds Timeout seconds for readinessProbe
747 ## @param msgTopologyOperator.readinessProbe.failureThreshold Failure threshold for readinessProbe
748 ## @param msgTopologyOperator.readinessProbe.successThreshold Success threshold for readinessProbe
752 initialDelaySeconds: 5
757 ## @param msgTopologyOperator.startupProbe.enabled Enable startupProbe on RabbitMQ Messaging Topology Operator nodes
758 ## @param msgTopologyOperator.startupProbe.initialDelaySeconds Initial delay seconds for startupProbe
759 ## @param msgTopologyOperator.startupProbe.periodSeconds Period seconds for startupProbe
760 ## @param msgTopologyOperator.startupProbe.timeoutSeconds Timeout seconds for startupProbe
761 ## @param msgTopologyOperator.startupProbe.failureThreshold Failure threshold for startupProbe
762 ## @param msgTopologyOperator.startupProbe.successThreshold Success threshold for startupProbe
766 initialDelaySeconds: 5
771 ## @param msgTopologyOperator.customLivenessProbe Custom livenessProbe that overrides the default one
773 customLivenessProbe: {}
774 ## @param msgTopologyOperator.customReadinessProbe Custom readinessProbe that overrides the default one
776 customReadinessProbe: {}
777 ## @param msgTopologyOperator.customStartupProbe Custom startupProbe that overrides the default one
779 customStartupProbe: {}
780 ## @param msgTopologyOperator.skipCreateAdmissionWebhookConfig skip creation of ValidationWebhookConfiguration
782 skipCreateAdmissionWebhookConfig: false
783 ## @param msgTopologyOperator.existingWebhookCertSecret name of a secret containing the certificates (use it to avoid certManager creating one)
785 existingWebhookCertSecret: ""
786 ## @param msgTopologyOperator.existingWebhookCertCABundle PEM-encoded CA Bundle of the existing secret provided in existingWebhookCertSecret (only if useCertManager=false)
788 existingWebhookCertCABundle: ""
789 ## RabbitMQ Messaging Topology Operator resource requests and limits
790 ## ref: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/
791 ## @param msgTopologyOperator.resourcesPreset Set container resources according to one common preset (allowed values: none, nano, micro, small, medium, large, xlarge, 2xlarge). This is ignored if msgTopologyOperator.resources is set (msgTopologyOperator.resources is recommended for production).
793 resourcesPreset: "nano"
794 ## @param msgTopologyOperator.resources Set container requests and limits for different resources like CPU or memory (essential for production workloads)
805 ## Pod Disruption Budget configuration
806 ## ref: https://kubernetes.io/docs/tasks/run-application/configure-pdb/
807 ## @param msgTopologyOperator.pdb.create Enable a Pod Disruption Budget creation
808 ## @param msgTopologyOperator.pdb.minAvailable Minimum number/percentage of pods that should remain scheduled
809 ## @param msgTopologyOperator.pdb.maxUnavailable Maximum number/percentage of pods that may be made unavailable
815 ## Configure Pods Security Context
816 ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-pod
817 ## @param msgTopologyOperator.podSecurityContext.enabled Enabled RabbitMQ Messaging Topology Operator pods' Security Context
818 ## @param msgTopologyOperator.podSecurityContext.fsGroupChangePolicy Set filesystem group change policy
819 ## @param msgTopologyOperator.podSecurityContext.sysctls Set kernel settings using the sysctl interface
820 ## @param msgTopologyOperator.podSecurityContext.supplementalGroups Set filesystem extra groups
821 ## @param msgTopologyOperator.podSecurityContext.fsGroup Set RabbitMQ Messaging Topology Operator pod's Security Context fsGroup
825 fsGroupChangePolicy: Always
827 supplementalGroups: []
829 ## Configure Container Security Context
830 ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-pod
831 ## @param msgTopologyOperator.containerSecurityContext.enabled Enabled containers' Security Context
832 ## @param msgTopologyOperator.containerSecurityContext.seLinuxOptions [object,nullable] Set SELinux options in container
833 ## @param msgTopologyOperator.containerSecurityContext.runAsUser Set containers' Security Context runAsUser
834 ## @param msgTopologyOperator.containerSecurityContext.runAsGroup Set containers' Security Context runAsGroup
835 ## @param msgTopologyOperator.containerSecurityContext.runAsNonRoot Set container's Security Context runAsNonRoot
836 ## @param msgTopologyOperator.containerSecurityContext.privileged Set container's Security Context privileged
837 ## @param msgTopologyOperator.containerSecurityContext.readOnlyRootFilesystem Set container's Security Context readOnlyRootFilesystem
838 ## @param msgTopologyOperator.containerSecurityContext.allowPrivilegeEscalation Set container's Security Context allowPrivilegeEscalation
839 ## @param msgTopologyOperator.containerSecurityContext.capabilities.drop List of capabilities to be dropped
840 ## @param msgTopologyOperator.containerSecurityContext.seccompProfile.type Set container's Security Context seccomp profile
842 containerSecurityContext:
849 readOnlyRootFilesystem: true
850 allowPrivilegeEscalation: false
854 type: "RuntimeDefault"
855 ## @param msgTopologyOperator.fullnameOverride String to fully override rmqco.msgTopologyOperator.fullname template
858 ## @param msgTopologyOperator.command Override default container command (useful when using custom images)
861 ## @param msgTopologyOperator.args Override default container args (useful when using custom images)
864 ## @param msgTopologyOperator.automountServiceAccountToken Mount Service Account token in pod
866 automountServiceAccountToken: true
867 ## @param msgTopologyOperator.hostAliases RabbitMQ Messaging Topology Operator pods host aliases
868 ## https://kubernetes.io/docs/concepts/services-networking/add-entries-to-pod-etc-hosts-with-host-aliases/
871 ## @param msgTopologyOperator.podLabels Extra labels for RabbitMQ Messaging Topology Operator pods
872 ## ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/
875 ## @param msgTopologyOperator.podAnnotations Annotations for RabbitMQ Messaging Topology Operator pods
876 ## ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations/
879 ## @param msgTopologyOperator.podAffinityPreset Pod affinity preset. Ignored if `affinity` is set. Allowed values: `soft` or `hard`
880 ## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#inter-pod-affinity-and-anti-affinity
882 podAffinityPreset: ""
883 ## @param msgTopologyOperator.podAntiAffinityPreset Pod anti-affinity preset. Ignored if `affinity` is set. Allowed values: `soft` or `hard`
884 ## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#inter-pod-affinity-and-anti-affinity
886 podAntiAffinityPreset: soft
887 ## Node affinity preset
888 ## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#node-affinity
891 ## @param msgTopologyOperator.nodeAffinityPreset.type Node affinity preset type. Ignored if `affinity` is set. Allowed values: `soft` or `hard`
894 ## @param msgTopologyOperator.nodeAffinityPreset.key Node label key to match. Ignored if `affinity` is set
897 ## @param msgTopologyOperator.nodeAffinityPreset.values Node label values to match. Ignored if `affinity` is set
904 ## @param msgTopologyOperator.affinity Affinity for RabbitMQ Messaging Topology Operator pods assignment
905 ## ref: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/#affinity-and-anti-affinity
906 ## NOTE: `podAffinityPreset`, `podAntiAffinityPreset`, and `nodeAffinityPreset` will be ignored when it's set
909 ## @param msgTopologyOperator.nodeSelector Node labels for RabbitMQ Messaging Topology Operator pods assignment
910 ## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/
913 ## @param msgTopologyOperator.tolerations Tolerations for RabbitMQ Messaging Topology Operator pods assignment
914 ## ref: https://kubernetes.io/docs/concepts/configuration/taint-and-toleration/
917 ## @param msgTopologyOperator.updateStrategy.type RabbitMQ Messaging Topology Operator statefulset strategy type
918 ## ref: https://kubernetes.io/docs/concepts/workloads/controllers/statefulset/#update-strategies
922 ## Can be set to RollingUpdate or OnDelete
925 ## @param msgTopologyOperator.priorityClassName RabbitMQ Messaging Topology Operator pods' priorityClassName
927 priorityClassName: ""
928 ## @param msgTopologyOperator.lifecycleHooks for the RabbitMQ Messaging Topology Operator container(s) to automate configuration before or after startup
931 ## @param msgTopologyOperator.containerPorts.metrics RabbitMQ Messaging Topology Operator container port (used for metrics)
932 ## @param msgTopologyOperator.containerPorts.health RabbitMQ Messaging Topology Operator container port (used for health probes)
937 ## @param msgTopologyOperator.extraEnvVars Array with extra environment variables to add to RabbitMQ Messaging Topology Operator nodes
944 ## @param msgTopologyOperator.extraEnvVarsCM Name of existing ConfigMap containing extra env vars for RabbitMQ Messaging Topology Operator nodes
947 ## @param msgTopologyOperator.extraEnvVarsSecret Name of existing Secret containing extra env vars for RabbitMQ Messaging Topology Operator nodes
949 extraEnvVarsSecret: ""
950 ## @param msgTopologyOperator.extraVolumes Optionally specify extra list of additional volumes for the RabbitMQ Messaging Topology Operator pod(s)
953 ## @param msgTopologyOperator.extraVolumeMounts Optionally specify extra list of additional volumeMounts for the RabbitMQ Messaging Topology Operator container(s)
955 extraVolumeMounts: []
956 ## @param msgTopologyOperator.sidecars Add additional sidecar containers to the RabbitMQ Messaging Topology Operator pod(s)
959 ## - name: your-image-name
961 ## imagePullPolicy: Always
964 ## containerPort: 1234
967 ## @param msgTopologyOperator.initContainers Add additional init containers to the RabbitMQ Messaging Topology Operator pod(s)
968 ## ref: https://kubernetes.io/docs/concepts/workloads/pods/init-containers/
971 ## - name: your-image-name
973 ## imagePullPolicy: Always
974 ## command: ['sh', '-c', 'echo "hello world"']
977 ## Webhook service parameters
980 ## @param msgTopologyOperator.service.type RabbitMQ Messaging Topology Operator webhook service type
983 ## @param msgTopologyOperator.service.ports.webhook RabbitMQ Messaging Topology Operator webhook service HTTP port
987 ## Node ports to expose
988 ## @param msgTopologyOperator.service.nodePorts.http Node port for HTTP
989 ## NOTE: choose port between <30000-32767>
993 ## @param msgTopologyOperator.service.clusterIP RabbitMQ Messaging Topology Operator webhook service Cluster IP
998 ## @param msgTopologyOperator.service.loadBalancerIP RabbitMQ Messaging Topology Operator webhook service Load Balancer IP
999 ## ref: https://kubernetes.io/docs/concepts/services-networking/service/#type-loadbalancer
1002 ## @param msgTopologyOperator.service.extraPorts Extra ports to expose (normally used with the `sidecar` value)
1005 ## @param msgTopologyOperator.service.loadBalancerSourceRanges RabbitMQ Messaging Topology Operator webhook service Load Balancer sources
1006 ## ref: https://kubernetes.io/docs/tasks/access-application-cluster/configure-cloud-provider-firewall/#restrict-access-for-loadbalancer-service
1008 ## loadBalancerSourceRanges:
1011 loadBalancerSourceRanges: []
1012 ## @param msgTopologyOperator.service.externalTrafficPolicy RabbitMQ Messaging Topology Operator webhook service external traffic policy
1013 ## ref https://kubernetes.io/docs/tasks/access-application-cluster/create-external-load-balancer/#preserving-the-client-source-ip
1015 externalTrafficPolicy: Cluster
1016 ## @param msgTopologyOperator.service.annotations Additional custom annotations for RabbitMQ Messaging Topology Operator webhook service
1019 ## @param msgTopologyOperator.service.sessionAffinity Session Affinity for Kubernetes service, can be "None" or "ClientIP"
1020 ## If "ClientIP", consecutive client requests will be directed to the same Pod
1021 ## ref: https://kubernetes.io/docs/concepts/services-networking/service/#virtual-ips-and-service-proxies
1023 sessionAffinity: None
1024 ## @param msgTopologyOperator.service.sessionAffinityConfig Additional settings for the sessionAffinity
1025 ## sessionAffinityConfig:
1027 ## timeoutSeconds: 300
1029 sessionAffinityConfig: {}
1031 ## Ref: https://kubernetes.io/docs/concepts/services-networking/network-policies/
1034 ## @param msgTopologyOperator.networkPolicy.enabled Specifies whether a NetworkPolicy should be created
1037 ## @param msgTopologyOperator.networkPolicy.kubeAPIServerPorts [array] List of possible endpoints to kube-apiserver (limit to your cluster settings to increase security)
1039 kubeAPIServerPorts: [443, 6443, 8443]
1040 ## @param msgTopologyOperator.networkPolicy.allowExternal Don't require injector label for connections
1041 ## The Policy model to apply. When set to false, only pods with the correct
1042 ## injector label will have network access to the ports injector is listening
1043 ## on. When true, injector will accept connections from any source
1044 ## (with the correct destination port).
1047 ## @param msgTopologyOperator.networkPolicy.allowExternalEgress Allow the pod to access any range of port and all destinations.
1049 allowExternalEgress: true
1050 ## @param msgTopologyOperator.networkPolicy.extraIngress [array] Add extra ingress rules to the NetworkPolicy
1060 ## - matchExpressions:
1066 ## @param msgTopologyOperator.networkPolicy.extraEgress [array] Add extra ingress rules to the NetworkPolicy
1076 ## - matchExpressions:
1083 ## @param msgTopologyOperator.networkPolicy.ingressNSMatchLabels [object] Labels to match to allow traffic from other namespaces
1084 ## @param msgTopologyOperator.networkPolicy.ingressNSPodMatchLabels [object] Pod labels to match to allow traffic from other namespaces
1086 ingressNSMatchLabels: {}
1087 ingressNSPodMatchLabels: {}
1088 ## RBAC configuration
1091 ## @param msgTopologyOperator.rbac.create Specifies whether RBAC resources should be created
1094 ## ClusterRole parameters
1097 ## @param msgTopologyOperator.rbac.clusterRole.customRules Define custom access rules for the ClusterRole
1098 ## ref: https://kubernetes.io/docs/reference/access-authn-authz/rbac/#role-and-clusterrole
1101 ## - apiGroups: A list of API groups (e.g., [""], ["apps"]).
1102 ## - resources: A list of resource names (e.g., ["configmaps", "pods"]).
1103 ## - verbs: A list of allowed access verbs (e.g., ["create", "get", "list"]).
1105 ## @param msgTopologyOperator.rbac.clusterRole.extraRules Define extra access rules for the ClusterRole. This has no effect if customerRules is a non-empty array.
1106 ## ref: https://kubernetes.io/docs/reference/access-authn-authz/rbac/#role-and-clusterrole
1109 ## - apiGroups: A list of API groups (e.g., [""], ["apps"]).
1110 ## - resources: A list of resource names (e.g., ["configmaps", "pods"]).
1111 ## - verbs: A list of allowed access verbs (e.g., ["create", "get", "list"]).
1113 ## ServiceAccount configuration
1116 ## @param msgTopologyOperator.serviceAccount.create Specifies whether a ServiceAccount should be created
1119 ## @param msgTopologyOperator.serviceAccount.name The name of the ServiceAccount to use.
1120 ## If not set and create is true, a name is generated using the common.names.fullname template
1123 ## @param msgTopologyOperator.serviceAccount.annotations Add annotations
1126 ## @param msgTopologyOperator.serviceAccount.automountServiceAccountToken Automount API credentials for a service account.
1128 automountServiceAccountToken: false
1129 ## @section RabbitMQ Messaging Topology Operator parameters
1132 ## Metrics service parameters
1135 ## @param msgTopologyOperator.metrics.service.enabled Create a service for accessing the metrics endpoint
1138 ## @param msgTopologyOperator.metrics.service.type RabbitMQ Cluster Operator metrics service type
1141 ## @param msgTopologyOperator.metrics.service.ports.http RabbitMQ Cluster Operator metrics service HTTP port
1145 ## Node ports to expose
1146 ## @param msgTopologyOperator.metrics.service.nodePorts.http Node port for HTTP
1147 ## NOTE: choose port between <30000-32767>
1151 ## @param msgTopologyOperator.metrics.service.clusterIP RabbitMQ Cluster Operator metrics service Cluster IP
1156 ## @param msgTopologyOperator.metrics.service.extraPorts Extra ports to expose (normally used with the `sidecar` value)
1159 ## @param msgTopologyOperator.metrics.service.loadBalancerIP RabbitMQ Cluster Operator metrics service Load Balancer IP
1160 ## ref: https://kubernetes.io/docs/concepts/services-networking/service/#type-loadbalancer
1163 ## @param msgTopologyOperator.metrics.service.loadBalancerSourceRanges RabbitMQ Cluster Operator metrics service Load Balancer sources
1164 ## ref: https://kubernetes.io/docs/tasks/access-application-cluster/configure-cloud-provider-firewall/#restrict-access-for-loadbalancer-service
1166 ## loadBalancerSourceRanges:
1169 loadBalancerSourceRanges: []
1170 ## @param msgTopologyOperator.metrics.service.externalTrafficPolicy RabbitMQ Cluster Operator metrics service external traffic policy
1171 ## ref https://kubernetes.io/docs/tasks/access-application-cluster/create-external-load-balancer/#preserving-the-client-source-ip
1173 externalTrafficPolicy: Cluster
1174 ## @param msgTopologyOperator.metrics.service.annotations [object] Additional custom annotations for RabbitMQ Cluster Operator metrics service
1177 prometheus.io/scrape: "true"
1178 prometheus.io/port: "{{ .Values.msgTopologyOperator.metrics.service.ports.http }}"
1179 ## @param msgTopologyOperator.metrics.service.sessionAffinity Session Affinity for Kubernetes service, can be "None" or "ClientIP"
1180 ## If "ClientIP", consecutive client requests will be directed to the same Pod
1181 ## ref: https://kubernetes.io/docs/concepts/services-networking/service/#virtual-ips-and-service-proxies
1183 sessionAffinity: None
1184 ## @param msgTopologyOperator.metrics.service.sessionAffinityConfig Additional settings for the sessionAffinity
1185 ## sessionAffinityConfig:
1187 ## timeoutSeconds: 300
1189 sessionAffinityConfig: {}
1191 ## @param msgTopologyOperator.metrics.serviceMonitor.enabled Specify if a servicemonitor will be deployed for prometheus-operator
1194 ## @param msgTopologyOperator.metrics.serviceMonitor.namespace Namespace which Prometheus is running in
1196 ## namespace: monitoring
1199 ## @param msgTopologyOperator.metrics.serviceMonitor.jobLabel Specify the jobLabel to use for the prometheus-operator
1201 jobLabel: app.kubernetes.io/name
1202 ## DEPRECATED: Use msgTopologyOperator.metrics.serviceMonitor.labels instead.
1203 ## This value will be removed in a future release
1204 ## additionalLabels: {}
1206 ## @param msgTopologyOperator.metrics.serviceMonitor.selector Prometheus instance selector labels
1209 ## prometheus: my-prometheus
1212 ## @param msgTopologyOperator.metrics.serviceMonitor.honorLabels Honor metrics labels
1213 ## ref: https://github.com/coreos/prometheus-operator/blob/master/Documentation/api.md#endpoint
1216 ## @param msgTopologyOperator.metrics.serviceMonitor.scrapeTimeout Timeout after which the scrape is ended
1217 ## ref: https://github.com/coreos/prometheus-operator/blob/master/Documentation/api.md#endpoint
1219 ## scrapeTimeout: 10s
1222 ## @param msgTopologyOperator.metrics.serviceMonitor.interval Scrape interval. If not set, the Prometheus default scrape interval is used
1225 ## @param msgTopologyOperator.metrics.serviceMonitor.metricRelabelings Specify additional relabeling of metrics
1227 metricRelabelings: []
1228 ## @param msgTopologyOperator.metrics.serviceMonitor.relabelings Specify general relabeling
1231 ## @param msgTopologyOperator.metrics.serviceMonitor.labels Extra labels for the ServiceMonitor
1235 ## @param msgTopologyOperator.metrics.podMonitor.enabled Create PodMonitor Resource for scraping metrics using PrometheusOperator
1238 ## @param msgTopologyOperator.metrics.podMonitor.jobLabel Specify the jobLabel to use for the prometheus-operator
1240 jobLabel: app.kubernetes.io/name
1241 ## @param msgTopologyOperator.metrics.podMonitor.namespace Namespace which Prometheus is running in
1244 ## @param msgTopologyOperator.metrics.podMonitor.honorLabels Honor metrics labels
1247 ## @param msgTopologyOperator.metrics.podMonitor.selector Prometheus instance selector labels
1249 ## @param msgTopologyOperator.metrics.podMonitor.interval Specify the interval at which metrics should be scraped
1252 ## @param msgTopologyOperator.metrics.podMonitor.scrapeTimeout Specify the timeout after which the scrape is ended
1255 ## @param msgTopologyOperator.metrics.podMonitor.additionalLabels [object] Additional labels that can be used so PodMonitors will be discovered by Prometheus
1257 additionalLabels: {}
1258 ## @param msgTopologyOperator.metrics.podMonitor.relabelings Specify general relabeling
1261 ## @param msgTopologyOperator.metrics.podMonitor.metricRelabelings Specify additional relabeling of metrics
1263 metricRelabelings: []
1264## @section cert-manager parameters
1267## @param useCertManager Deploy cert-manager objects (Issuer and Certificate) for webhooks
1269useCertManager: false