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)
364 ## @param clusterOperator.extraEnvVars Array with extra environment variables to add to RabbitMQ Cluster Operator nodes
371 ## @param clusterOperator.extraEnvVarsCM Name of existing ConfigMap containing extra env vars for RabbitMQ Cluster Operator nodes
374 ## @param clusterOperator.extraEnvVarsSecret Name of existing Secret containing extra env vars for RabbitMQ Cluster Operator nodes
376 extraEnvVarsSecret: ""
377 ## @param clusterOperator.extraVolumes Optionally specify extra list of additional volumes for the RabbitMQ Cluster Operator pod(s)
380 ## @param clusterOperator.extraVolumeMounts Optionally specify extra list of additional volumeMounts for the RabbitMQ Cluster Operator container(s)
382 extraVolumeMounts: []
383 ## @param clusterOperator.sidecars Add additional sidecar containers to the RabbitMQ Cluster Operator pod(s)
386 ## - name: your-image-name
388 ## imagePullPolicy: Always
391 ## containerPort: 1234
394 ## @param clusterOperator.initContainers Add additional init containers to the RabbitMQ Cluster Operator pod(s)
395 ## ref: https://kubernetes.io/docs/concepts/workloads/pods/init-containers/
398 ## - name: your-image-name
400 ## imagePullPolicy: Always
401 ## command: ['sh', '-c', 'echo "hello world"']
405 ## Ref: https://kubernetes.io/docs/concepts/services-networking/network-policies/
408 ## @param clusterOperator.networkPolicy.enabled Specifies whether a NetworkPolicy should be created
411 ## @param clusterOperator.networkPolicy.kubeAPIServerPorts [array] List of possible endpoints to kube-apiserver (limit to your cluster settings to increase security)
413 kubeAPIServerPorts: [443, 6443, 8443]
414 ## @param clusterOperator.networkPolicy.allowExternal Don't require injector label for connections
415 ## The Policy model to apply. When set to false, only pods with the correct
416 ## injector label will have network access to the ports injector is listening
417 ## on. When true, injector will accept connections from any source
418 ## (with the correct destination port).
421 ## @param clusterOperator.networkPolicy.allowExternalEgress Allow the pod to access any range of port and all destinations.
423 allowExternalEgress: true
424 ## @param clusterOperator.networkPolicy.extraIngress [array] Add extra ingress rules to the NetworkPolicy
434 ## - matchExpressions:
440 ## @param clusterOperator.networkPolicy.extraEgress [array] Add extra ingress rules to the NetworkPolicy
450 ## - matchExpressions:
457 ## @param clusterOperator.networkPolicy.ingressNSMatchLabels [object] Labels to match to allow traffic from other namespaces
458 ## @param clusterOperator.networkPolicy.ingressNSPodMatchLabels [object] Pod labels to match to allow traffic from other namespaces
460 ingressNSMatchLabels: {}
461 ingressNSPodMatchLabels: {}
462 ## RBAC configuration
465 ## @param clusterOperator.rbac.create Specifies whether RBAC resources should be created
468 ## ClusterRole parameters
471 ## @param clusterOperator.rbac.clusterRole.customRules Define custom access rules for the ClusterRole
472 ## ref: https://kubernetes.io/docs/reference/access-authn-authz/rbac/#role-and-clusterrole
475 ## - apiGroups: A list of API groups (e.g., [""], ["apps"]).
476 ## - resources: A list of resource names (e.g., ["configmaps", "pods"]).
477 ## - verbs: A list of allowed access verbs (e.g., ["create", "get", "list"]).
479 ## @param clusterOperator.rbac.clusterRole.extraRules Define extra access rules for the ClusterRole. This has no effect if customerRules is a non-empty array.
480 ## ref: https://kubernetes.io/docs/reference/access-authn-authz/rbac/#role-and-clusterrole
483 ## - apiGroups: A list of API groups (e.g., [""], ["apps"]).
484 ## - resources: A list of resource names (e.g., ["configmaps", "pods"]).
485 ## - verbs: A list of allowed access verbs (e.g., ["create", "get", "list"]).
487 ## ServiceAccount configuration
490 ## @param clusterOperator.serviceAccount.create Specifies whether a ServiceAccount should be created
493 ## @param clusterOperator.serviceAccount.name The name of the ServiceAccount to use.
494 ## If not set and create is true, a name is generated using the common.names.fullname template
497 ## @param clusterOperator.serviceAccount.annotations Add annotations
500 ## @param clusterOperator.serviceAccount.automountServiceAccountToken Automount API credentials for a service account.
502 automountServiceAccountToken: false
503 ## @section RabbitMQ Cluster Operator Metrics parameters
506 ## Metrics service parameters
509 ## @param clusterOperator.metrics.service.enabled Create a service for accessing the metrics endpoint
512 ## @param clusterOperator.metrics.service.type RabbitMQ Cluster Operator metrics service type
515 ## @param clusterOperator.metrics.service.ports.http RabbitMQ Cluster Operator metrics service HTTP port
519 ## Node ports to expose
520 ## @param clusterOperator.metrics.service.nodePorts.http Node port for HTTP
521 ## NOTE: choose port between <30000-32767>
525 ## @param clusterOperator.metrics.service.clusterIP RabbitMQ Cluster Operator metrics service Cluster IP
530 ## @param clusterOperator.metrics.service.extraPorts Extra ports to expose (normally used with the `sidecar` value)
533 ## @param clusterOperator.metrics.service.loadBalancerIP RabbitMQ Cluster Operator metrics service Load Balancer IP
534 ## ref: https://kubernetes.io/docs/concepts/services-networking/service/#type-loadbalancer
537 ## @param clusterOperator.metrics.service.loadBalancerSourceRanges RabbitMQ Cluster Operator metrics service Load Balancer sources
538 ## ref: https://kubernetes.io/docs/tasks/access-application-cluster/configure-cloud-provider-firewall/#restrict-access-for-loadbalancer-service
540 ## loadBalancerSourceRanges:
543 loadBalancerSourceRanges: []
544 ## @param clusterOperator.metrics.service.externalTrafficPolicy RabbitMQ Cluster Operator metrics service external traffic policy
545 ## ref https://kubernetes.io/docs/tasks/access-application-cluster/create-external-load-balancer/#preserving-the-client-source-ip
547 externalTrafficPolicy: Cluster
548 ## @param clusterOperator.metrics.service.annotations [object] Additional custom annotations for RabbitMQ Cluster Operator metrics service
551 prometheus.io/scrape: "true"
552 prometheus.io/port: "{{ .Values.clusterOperator.metrics.service.ports.http }}"
553 ## @param clusterOperator.metrics.service.sessionAffinity Session Affinity for Kubernetes service, can be "None" or "ClientIP"
554 ## If "ClientIP", consecutive client requests will be directed to the same Pod
555 ## ref: https://kubernetes.io/docs/concepts/services-networking/service/#virtual-ips-and-service-proxies
557 sessionAffinity: None
558 ## @param clusterOperator.metrics.service.sessionAffinityConfig Additional settings for the sessionAffinity
559 ## sessionAffinityConfig:
561 ## timeoutSeconds: 300
563 sessionAffinityConfig: {}
565 ## @param clusterOperator.metrics.serviceMonitor.enabled Specify if a servicemonitor will be deployed for prometheus-operator
568 ## @param clusterOperator.metrics.serviceMonitor.namespace Namespace which Prometheus is running in
570 ## namespace: monitoring
573 ## @param clusterOperator.metrics.serviceMonitor.jobLabel Specify the jobLabel to use for the prometheus-operator
575 jobLabel: app.kubernetes.io/name
576 ## @param clusterOperator.metrics.serviceMonitor.honorLabels Honor metrics labels
577 ## ref: https://github.com/coreos/prometheus-operator/blob/master/Documentation/api.md#endpoint
580 ## @param clusterOperator.metrics.serviceMonitor.selector Prometheus instance selector labels
583 ## prometheus: my-prometheus
586 ## @param clusterOperator.metrics.serviceMonitor.scrapeTimeout Timeout after which the scrape is ended
587 ## ref: https://github.com/coreos/prometheus-operator/blob/master/Documentation/api.md#endpoint
589 ## scrapeTimeout: 10s
592 ## @param clusterOperator.metrics.serviceMonitor.interval Scrape interval. If not set, the Prometheus default scrape interval is used
595 ## DEPRECATED: Use clusterOperator.metrics.serviceMonitor.labels instead
596 ## This value will be removed in a future release
597 ## additionalLabels: {}
599 ## @param clusterOperator.metrics.serviceMonitor.metricRelabelings Specify additional relabeling of metrics
601 metricRelabelings: []
602 ## @param clusterOperator.metrics.serviceMonitor.relabelings Specify general relabeling
605 ## @param clusterOperator.metrics.serviceMonitor.labels Extra labels for the ServiceMonitor
608 ## @param clusterOperator.metrics.serviceMonitor.path Define the path used by ServiceMonitor to scrap metrics
609 ## Could be /metrics for aggregated metrics or /metrics/per-object for more details
612 ## @param clusterOperator.metrics.serviceMonitor.params Define the HTTP URL parameters used by ServiceMonitor
616 ## @param clusterOperator.metrics.podMonitor.enabled Create PodMonitor Resource for scraping metrics using PrometheusOperator
619 ## @param clusterOperator.metrics.podMonitor.jobLabel Specify the jobLabel to use for the prometheus-operator
621 jobLabel: app.kubernetes.io/name
622 ## @param clusterOperator.metrics.podMonitor.namespace Namespace which Prometheus is running in
625 ## @param clusterOperator.metrics.podMonitor.honorLabels Honor metrics labels
628 ## @param clusterOperator.metrics.podMonitor.selector Prometheus instance selector labels
630 ## @param clusterOperator.metrics.podMonitor.interval Specify the interval at which metrics should be scraped
633 ## @param clusterOperator.metrics.podMonitor.scrapeTimeout Specify the timeout after which the scrape is ended
636 ## @param clusterOperator.metrics.podMonitor.additionalLabels [object] Additional labels that can be used so PodMonitors will be discovered by Prometheus
639 ## @param clusterOperator.metrics.podMonitor.path Define HTTP path to scrape for metrics.
642 ## @param clusterOperator.metrics.podMonitor.relabelings Specify general relabeling
645 ## @param clusterOperator.metrics.podMonitor.metricRelabelings Specify additional relabeling of metrics
647 metricRelabelings: []
648 ## @param clusterOperator.metrics.podMonitor.params Define the HTTP URL parameters used by PodMonitor
651## @section RabbitMQ Messaging Topology Operator Parameters
654 ## @param msgTopologyOperator.enabled Deploy RabbitMQ Messaging Topology Operator as part of the installation
657 ## Iamguarded RabbitMQ Messaging Topology Operator image
658 ## @param msgTopologyOperator.image.registry [default: REGISTRY_NAME] RabbitMQ Messaging Topology Operator image registry
659 ## @param msgTopologyOperator.image.repository [default: REPOSITORY_NAME/rmq-messaging-topology-operator] RabbitMQ Messaging Topology Operator image repository
660 ## @skip msgTopologyOperator.image.tag RabbitMQ Messaging Topology Operator image tag (immutable tags are recommended)
661 ## @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
662 ## @param msgTopologyOperator.image.pullPolicy RabbitMQ Messaging Topology Operator image pull policy
663 ## @param msgTopologyOperator.image.pullSecrets RabbitMQ Messaging Topology Operator image pull secrets
667 repository: chainguard-private/rabbitmq-messaging-topology-operator-iamguarded
670 ## Specify a imagePullPolicy
671 ## ref: https://kubernetes.io/docs/concepts/containers/images/#pre-pulled-images
673 pullPolicy: IfNotPresent
674 ## Optionally specify an array of imagePullSecrets.
675 ## Secrets must be manually created in the namespace.
676 ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/pull-image-private-registry/
679 ## - myRegistryKeySecretName
682 ## @param msgTopologyOperator.revisionHistoryLimit sets number of replicaset to keep in k8s
684 revisionHistoryLimit: 10
685 ## @param msgTopologyOperator.watchAllNamespaces Watch for resources in all namespaces
687 watchAllNamespaces: true
688 ## @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)
691 ## @param msgTopologyOperator.replicaCount Number of RabbitMQ Messaging Topology Operator replicas to deploy
694 ## @param msgTopologyOperator.topologySpreadConstraints Topology Spread Constraints for pod assignment
695 ## https://kubernetes.io/docs/concepts/workloads/pods/pod-topology-spread-constraints/
696 ## The value is evaluated as a template
698 topologySpreadConstraints: []
699 ## @param msgTopologyOperator.schedulerName Alternative scheduler
702 ## @param msgTopologyOperator.terminationGracePeriodSeconds In seconds, time the given to the %%MAIN_CONTAINER_NAME%% pod needs to terminate gracefully
703 ## ref: https://kubernetes.io/docs/concepts/workloads/pods/pod/#termination-of-pods
705 terminationGracePeriodSeconds: ""
706 ## @param msgTopologyOperator.hostNetwork Boolean
709 ## @param msgTopologyOperator.dnsPolicy Alternative DNS policy
711 dnsPolicy: "ClusterFirst"
712 ## Configure extra options for RabbitMQ Messaging Topology Operator containers' liveness and readiness probes
713 ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-probes/#configure-probes
714 ## @param msgTopologyOperator.livenessProbe.enabled Enable livenessProbe on RabbitMQ Messaging Topology Operator nodes
715 ## @param msgTopologyOperator.livenessProbe.initialDelaySeconds Initial delay seconds for livenessProbe
716 ## @param msgTopologyOperator.livenessProbe.periodSeconds Period seconds for livenessProbe
717 ## @param msgTopologyOperator.livenessProbe.timeoutSeconds Timeout seconds for livenessProbe
718 ## @param msgTopologyOperator.livenessProbe.failureThreshold Failure threshold for livenessProbe
719 ## @param msgTopologyOperator.livenessProbe.successThreshold Success threshold for livenessProbe
723 initialDelaySeconds: 5
728 ## @param msgTopologyOperator.readinessProbe.enabled Enable readinessProbe on RabbitMQ Messaging Topology Operator nodes
729 ## @param msgTopologyOperator.readinessProbe.initialDelaySeconds Initial delay seconds for readinessProbe
730 ## @param msgTopologyOperator.readinessProbe.periodSeconds Period seconds for readinessProbe
731 ## @param msgTopologyOperator.readinessProbe.timeoutSeconds Timeout seconds for readinessProbe
732 ## @param msgTopologyOperator.readinessProbe.failureThreshold Failure threshold for readinessProbe
733 ## @param msgTopologyOperator.readinessProbe.successThreshold Success threshold for readinessProbe
737 initialDelaySeconds: 5
742 ## @param msgTopologyOperator.startupProbe.enabled Enable startupProbe on RabbitMQ Messaging Topology Operator nodes
743 ## @param msgTopologyOperator.startupProbe.initialDelaySeconds Initial delay seconds for startupProbe
744 ## @param msgTopologyOperator.startupProbe.periodSeconds Period seconds for startupProbe
745 ## @param msgTopologyOperator.startupProbe.timeoutSeconds Timeout seconds for startupProbe
746 ## @param msgTopologyOperator.startupProbe.failureThreshold Failure threshold for startupProbe
747 ## @param msgTopologyOperator.startupProbe.successThreshold Success threshold for startupProbe
751 initialDelaySeconds: 5
756 ## @param msgTopologyOperator.customLivenessProbe Custom livenessProbe that overrides the default one
758 customLivenessProbe: {}
759 ## @param msgTopologyOperator.customReadinessProbe Custom readinessProbe that overrides the default one
761 customReadinessProbe: {}
762 ## @param msgTopologyOperator.customStartupProbe Custom startupProbe that overrides the default one
764 customStartupProbe: {}
765 ## @param msgTopologyOperator.skipCreateAdmissionWebhookConfig skip creation of ValidationWebhookConfiguration
767 skipCreateAdmissionWebhookConfig: false
768 ## @param msgTopologyOperator.existingWebhookCertSecret name of a secret containing the certificates (use it to avoid certManager creating one)
770 existingWebhookCertSecret: ""
771 ## @param msgTopologyOperator.existingWebhookCertCABundle PEM-encoded CA Bundle of the existing secret provided in existingWebhookCertSecret (only if useCertManager=false)
773 existingWebhookCertCABundle: ""
774 ## RabbitMQ Messaging Topology Operator resource requests and limits
775 ## ref: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/
776 ## @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).
778 resourcesPreset: "nano"
779 ## @param msgTopologyOperator.resources Set container requests and limits for different resources like CPU or memory (essential for production workloads)
790 ## Pod Disruption Budget configuration
791 ## ref: https://kubernetes.io/docs/tasks/run-application/configure-pdb/
792 ## @param msgTopologyOperator.pdb.create Enable a Pod Disruption Budget creation
793 ## @param msgTopologyOperator.pdb.minAvailable Minimum number/percentage of pods that should remain scheduled
794 ## @param msgTopologyOperator.pdb.maxUnavailable Maximum number/percentage of pods that may be made unavailable
800 ## Configure Pods Security Context
801 ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-pod
802 ## @param msgTopologyOperator.podSecurityContext.enabled Enabled RabbitMQ Messaging Topology Operator pods' Security Context
803 ## @param msgTopologyOperator.podSecurityContext.fsGroupChangePolicy Set filesystem group change policy
804 ## @param msgTopologyOperator.podSecurityContext.sysctls Set kernel settings using the sysctl interface
805 ## @param msgTopologyOperator.podSecurityContext.supplementalGroups Set filesystem extra groups
806 ## @param msgTopologyOperator.podSecurityContext.fsGroup Set RabbitMQ Messaging Topology Operator pod's Security Context fsGroup
810 fsGroupChangePolicy: Always
812 supplementalGroups: []
814 ## Configure Container Security Context
815 ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-pod
816 ## @param msgTopologyOperator.containerSecurityContext.enabled Enabled containers' Security Context
817 ## @param msgTopologyOperator.containerSecurityContext.seLinuxOptions [object,nullable] Set SELinux options in container
818 ## @param msgTopologyOperator.containerSecurityContext.runAsUser Set containers' Security Context runAsUser
819 ## @param msgTopologyOperator.containerSecurityContext.runAsGroup Set containers' Security Context runAsGroup
820 ## @param msgTopologyOperator.containerSecurityContext.runAsNonRoot Set container's Security Context runAsNonRoot
821 ## @param msgTopologyOperator.containerSecurityContext.privileged Set container's Security Context privileged
822 ## @param msgTopologyOperator.containerSecurityContext.readOnlyRootFilesystem Set container's Security Context readOnlyRootFilesystem
823 ## @param msgTopologyOperator.containerSecurityContext.allowPrivilegeEscalation Set container's Security Context allowPrivilegeEscalation
824 ## @param msgTopologyOperator.containerSecurityContext.capabilities.drop List of capabilities to be dropped
825 ## @param msgTopologyOperator.containerSecurityContext.seccompProfile.type Set container's Security Context seccomp profile
827 containerSecurityContext:
834 readOnlyRootFilesystem: true
835 allowPrivilegeEscalation: false
839 type: "RuntimeDefault"
840 ## @param msgTopologyOperator.fullnameOverride String to fully override rmqco.msgTopologyOperator.fullname template
843 ## @param msgTopologyOperator.command Override default container command (useful when using custom images)
846 ## @param msgTopologyOperator.args Override default container args (useful when using custom images)
849 ## @param msgTopologyOperator.automountServiceAccountToken Mount Service Account token in pod
851 automountServiceAccountToken: true
852 ## @param msgTopologyOperator.hostAliases RabbitMQ Messaging Topology Operator pods host aliases
853 ## https://kubernetes.io/docs/concepts/services-networking/add-entries-to-pod-etc-hosts-with-host-aliases/
856 ## @param msgTopologyOperator.podLabels Extra labels for RabbitMQ Messaging Topology Operator pods
857 ## ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/
860 ## @param msgTopologyOperator.podAnnotations Annotations for RabbitMQ Messaging Topology Operator pods
861 ## ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations/
864 ## @param msgTopologyOperator.podAffinityPreset Pod affinity preset. Ignored if `affinity` is set. Allowed values: `soft` or `hard`
865 ## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#inter-pod-affinity-and-anti-affinity
867 podAffinityPreset: ""
868 ## @param msgTopologyOperator.podAntiAffinityPreset Pod anti-affinity preset. Ignored if `affinity` is set. Allowed values: `soft` or `hard`
869 ## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#inter-pod-affinity-and-anti-affinity
871 podAntiAffinityPreset: soft
872 ## Node affinity preset
873 ## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#node-affinity
876 ## @param msgTopologyOperator.nodeAffinityPreset.type Node affinity preset type. Ignored if `affinity` is set. Allowed values: `soft` or `hard`
879 ## @param msgTopologyOperator.nodeAffinityPreset.key Node label key to match. Ignored if `affinity` is set
882 ## @param msgTopologyOperator.nodeAffinityPreset.values Node label values to match. Ignored if `affinity` is set
889 ## @param msgTopologyOperator.affinity Affinity for RabbitMQ Messaging Topology Operator pods assignment
890 ## ref: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/#affinity-and-anti-affinity
891 ## NOTE: `podAffinityPreset`, `podAntiAffinityPreset`, and `nodeAffinityPreset` will be ignored when it's set
894 ## @param msgTopologyOperator.nodeSelector Node labels for RabbitMQ Messaging Topology Operator pods assignment
895 ## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/
898 ## @param msgTopologyOperator.tolerations Tolerations for RabbitMQ Messaging Topology Operator pods assignment
899 ## ref: https://kubernetes.io/docs/concepts/configuration/taint-and-toleration/
902 ## @param msgTopologyOperator.updateStrategy.type RabbitMQ Messaging Topology Operator statefulset strategy type
903 ## ref: https://kubernetes.io/docs/concepts/workloads/controllers/statefulset/#update-strategies
907 ## Can be set to RollingUpdate or OnDelete
910 ## @param msgTopologyOperator.priorityClassName RabbitMQ Messaging Topology Operator pods' priorityClassName
912 priorityClassName: ""
913 ## @param msgTopologyOperator.lifecycleHooks for the RabbitMQ Messaging Topology Operator container(s) to automate configuration before or after startup
916 ## @param msgTopologyOperator.containerPorts.metrics RabbitMQ Messaging Topology Operator container port (used for metrics)
920 ## @param msgTopologyOperator.extraEnvVars Array with extra environment variables to add to RabbitMQ Messaging Topology Operator nodes
927 ## @param msgTopologyOperator.extraEnvVarsCM Name of existing ConfigMap containing extra env vars for RabbitMQ Messaging Topology Operator nodes
930 ## @param msgTopologyOperator.extraEnvVarsSecret Name of existing Secret containing extra env vars for RabbitMQ Messaging Topology Operator nodes
932 extraEnvVarsSecret: ""
933 ## @param msgTopologyOperator.extraVolumes Optionally specify extra list of additional volumes for the RabbitMQ Messaging Topology Operator pod(s)
936 ## @param msgTopologyOperator.extraVolumeMounts Optionally specify extra list of additional volumeMounts for the RabbitMQ Messaging Topology Operator container(s)
938 extraVolumeMounts: []
939 ## @param msgTopologyOperator.sidecars Add additional sidecar containers to the RabbitMQ Messaging Topology Operator pod(s)
942 ## - name: your-image-name
944 ## imagePullPolicy: Always
947 ## containerPort: 1234
950 ## @param msgTopologyOperator.initContainers Add additional init containers to the RabbitMQ Messaging Topology Operator pod(s)
951 ## ref: https://kubernetes.io/docs/concepts/workloads/pods/init-containers/
954 ## - name: your-image-name
956 ## imagePullPolicy: Always
957 ## command: ['sh', '-c', 'echo "hello world"']
960 ## Webhook service parameters
963 ## @param msgTopologyOperator.service.type RabbitMQ Messaging Topology Operator webhook service type
966 ## @param msgTopologyOperator.service.ports.webhook RabbitMQ Messaging Topology Operator webhook service HTTP port
970 ## Node ports to expose
971 ## @param msgTopologyOperator.service.nodePorts.http Node port for HTTP
972 ## NOTE: choose port between <30000-32767>
976 ## @param msgTopologyOperator.service.clusterIP RabbitMQ Messaging Topology Operator webhook service Cluster IP
981 ## @param msgTopologyOperator.service.loadBalancerIP RabbitMQ Messaging Topology Operator webhook service Load Balancer IP
982 ## ref: https://kubernetes.io/docs/concepts/services-networking/service/#type-loadbalancer
985 ## @param msgTopologyOperator.service.extraPorts Extra ports to expose (normally used with the `sidecar` value)
988 ## @param msgTopologyOperator.service.loadBalancerSourceRanges RabbitMQ Messaging Topology Operator webhook service Load Balancer sources
989 ## ref: https://kubernetes.io/docs/tasks/access-application-cluster/configure-cloud-provider-firewall/#restrict-access-for-loadbalancer-service
991 ## loadBalancerSourceRanges:
994 loadBalancerSourceRanges: []
995 ## @param msgTopologyOperator.service.externalTrafficPolicy RabbitMQ Messaging Topology Operator webhook service external traffic policy
996 ## ref https://kubernetes.io/docs/tasks/access-application-cluster/create-external-load-balancer/#preserving-the-client-source-ip
998 externalTrafficPolicy: Cluster
999 ## @param msgTopologyOperator.service.annotations Additional custom annotations for RabbitMQ Messaging Topology Operator webhook service
1002 ## @param msgTopologyOperator.service.sessionAffinity Session Affinity for Kubernetes service, can be "None" or "ClientIP"
1003 ## If "ClientIP", consecutive client requests will be directed to the same Pod
1004 ## ref: https://kubernetes.io/docs/concepts/services-networking/service/#virtual-ips-and-service-proxies
1006 sessionAffinity: None
1007 ## @param msgTopologyOperator.service.sessionAffinityConfig Additional settings for the sessionAffinity
1008 ## sessionAffinityConfig:
1010 ## timeoutSeconds: 300
1012 sessionAffinityConfig: {}
1014 ## Ref: https://kubernetes.io/docs/concepts/services-networking/network-policies/
1017 ## @param msgTopologyOperator.networkPolicy.enabled Specifies whether a NetworkPolicy should be created
1020 ## @param msgTopologyOperator.networkPolicy.kubeAPIServerPorts [array] List of possible endpoints to kube-apiserver (limit to your cluster settings to increase security)
1022 kubeAPIServerPorts: [443, 6443, 8443]
1023 ## @param msgTopologyOperator.networkPolicy.allowExternal Don't require injector label for connections
1024 ## The Policy model to apply. When set to false, only pods with the correct
1025 ## injector label will have network access to the ports injector is listening
1026 ## on. When true, injector will accept connections from any source
1027 ## (with the correct destination port).
1030 ## @param msgTopologyOperator.networkPolicy.allowExternalEgress Allow the pod to access any range of port and all destinations.
1032 allowExternalEgress: true
1033 ## @param msgTopologyOperator.networkPolicy.extraIngress [array] Add extra ingress rules to the NetworkPolicy
1043 ## - matchExpressions:
1049 ## @param msgTopologyOperator.networkPolicy.extraEgress [array] Add extra ingress rules to the NetworkPolicy
1059 ## - matchExpressions:
1066 ## @param msgTopologyOperator.networkPolicy.ingressNSMatchLabels [object] Labels to match to allow traffic from other namespaces
1067 ## @param msgTopologyOperator.networkPolicy.ingressNSPodMatchLabels [object] Pod labels to match to allow traffic from other namespaces
1069 ingressNSMatchLabels: {}
1070 ingressNSPodMatchLabels: {}
1071 ## RBAC configuration
1074 ## @param msgTopologyOperator.rbac.create Specifies whether RBAC resources should be created
1077 ## ClusterRole parameters
1080 ## @param msgTopologyOperator.rbac.clusterRole.customRules Define custom access rules for the ClusterRole
1081 ## ref: https://kubernetes.io/docs/reference/access-authn-authz/rbac/#role-and-clusterrole
1084 ## - apiGroups: A list of API groups (e.g., [""], ["apps"]).
1085 ## - resources: A list of resource names (e.g., ["configmaps", "pods"]).
1086 ## - verbs: A list of allowed access verbs (e.g., ["create", "get", "list"]).
1088 ## @param msgTopologyOperator.rbac.clusterRole.extraRules Define extra access rules for the ClusterRole. This has no effect if customerRules is a non-empty array.
1089 ## ref: https://kubernetes.io/docs/reference/access-authn-authz/rbac/#role-and-clusterrole
1092 ## - apiGroups: A list of API groups (e.g., [""], ["apps"]).
1093 ## - resources: A list of resource names (e.g., ["configmaps", "pods"]).
1094 ## - verbs: A list of allowed access verbs (e.g., ["create", "get", "list"]).
1096 ## ServiceAccount configuration
1099 ## @param msgTopologyOperator.serviceAccount.create Specifies whether a ServiceAccount should be created
1102 ## @param msgTopologyOperator.serviceAccount.name The name of the ServiceAccount to use.
1103 ## If not set and create is true, a name is generated using the common.names.fullname template
1106 ## @param msgTopologyOperator.serviceAccount.annotations Add annotations
1109 ## @param msgTopologyOperator.serviceAccount.automountServiceAccountToken Automount API credentials for a service account.
1111 automountServiceAccountToken: false
1112 ## @section RabbitMQ Messaging Topology Operator parameters
1115 ## Metrics service parameters
1118 ## @param msgTopologyOperator.metrics.service.enabled Create a service for accessing the metrics endpoint
1121 ## @param msgTopologyOperator.metrics.service.type RabbitMQ Cluster Operator metrics service type
1124 ## @param msgTopologyOperator.metrics.service.ports.http RabbitMQ Cluster Operator metrics service HTTP port
1128 ## Node ports to expose
1129 ## @param msgTopologyOperator.metrics.service.nodePorts.http Node port for HTTP
1130 ## NOTE: choose port between <30000-32767>
1134 ## @param msgTopologyOperator.metrics.service.clusterIP RabbitMQ Cluster Operator metrics service Cluster IP
1139 ## @param msgTopologyOperator.metrics.service.extraPorts Extra ports to expose (normally used with the `sidecar` value)
1142 ## @param msgTopologyOperator.metrics.service.loadBalancerIP RabbitMQ Cluster Operator metrics service Load Balancer IP
1143 ## ref: https://kubernetes.io/docs/concepts/services-networking/service/#type-loadbalancer
1146 ## @param msgTopologyOperator.metrics.service.loadBalancerSourceRanges RabbitMQ Cluster Operator metrics service Load Balancer sources
1147 ## ref: https://kubernetes.io/docs/tasks/access-application-cluster/configure-cloud-provider-firewall/#restrict-access-for-loadbalancer-service
1149 ## loadBalancerSourceRanges:
1152 loadBalancerSourceRanges: []
1153 ## @param msgTopologyOperator.metrics.service.externalTrafficPolicy RabbitMQ Cluster Operator metrics service external traffic policy
1154 ## ref https://kubernetes.io/docs/tasks/access-application-cluster/create-external-load-balancer/#preserving-the-client-source-ip
1156 externalTrafficPolicy: Cluster
1157 ## @param msgTopologyOperator.metrics.service.annotations [object] Additional custom annotations for RabbitMQ Cluster Operator metrics service
1160 prometheus.io/scrape: "true"
1161 prometheus.io/port: "{{ .Values.msgTopologyOperator.metrics.service.ports.http }}"
1162 ## @param msgTopologyOperator.metrics.service.sessionAffinity Session Affinity for Kubernetes service, can be "None" or "ClientIP"
1163 ## If "ClientIP", consecutive client requests will be directed to the same Pod
1164 ## ref: https://kubernetes.io/docs/concepts/services-networking/service/#virtual-ips-and-service-proxies
1166 sessionAffinity: None
1167 ## @param msgTopologyOperator.metrics.service.sessionAffinityConfig Additional settings for the sessionAffinity
1168 ## sessionAffinityConfig:
1170 ## timeoutSeconds: 300
1172 sessionAffinityConfig: {}
1174 ## @param msgTopologyOperator.metrics.serviceMonitor.enabled Specify if a servicemonitor will be deployed for prometheus-operator
1177 ## @param msgTopologyOperator.metrics.serviceMonitor.namespace Namespace which Prometheus is running in
1179 ## namespace: monitoring
1182 ## @param msgTopologyOperator.metrics.serviceMonitor.jobLabel Specify the jobLabel to use for the prometheus-operator
1184 jobLabel: app.kubernetes.io/name
1185 ## DEPRECATED: Use msgTopologyOperator.metrics.serviceMonitor.labels instead.
1186 ## This value will be removed in a future release
1187 ## additionalLabels: {}
1189 ## @param msgTopologyOperator.metrics.serviceMonitor.selector Prometheus instance selector labels
1192 ## prometheus: my-prometheus
1195 ## @param msgTopologyOperator.metrics.serviceMonitor.honorLabels Honor metrics labels
1196 ## ref: https://github.com/coreos/prometheus-operator/blob/master/Documentation/api.md#endpoint
1199 ## @param msgTopologyOperator.metrics.serviceMonitor.scrapeTimeout Timeout after which the scrape is ended
1200 ## ref: https://github.com/coreos/prometheus-operator/blob/master/Documentation/api.md#endpoint
1202 ## scrapeTimeout: 10s
1205 ## @param msgTopologyOperator.metrics.serviceMonitor.interval Scrape interval. If not set, the Prometheus default scrape interval is used
1208 ## @param msgTopologyOperator.metrics.serviceMonitor.metricRelabelings Specify additional relabeling of metrics
1210 metricRelabelings: []
1211 ## @param msgTopologyOperator.metrics.serviceMonitor.relabelings Specify general relabeling
1214 ## @param msgTopologyOperator.metrics.serviceMonitor.labels Extra labels for the ServiceMonitor
1218 ## @param msgTopologyOperator.metrics.podMonitor.enabled Create PodMonitor Resource for scraping metrics using PrometheusOperator
1221 ## @param msgTopologyOperator.metrics.podMonitor.jobLabel Specify the jobLabel to use for the prometheus-operator
1223 jobLabel: app.kubernetes.io/name
1224 ## @param msgTopologyOperator.metrics.podMonitor.namespace Namespace which Prometheus is running in
1227 ## @param msgTopologyOperator.metrics.podMonitor.honorLabels Honor metrics labels
1230 ## @param msgTopologyOperator.metrics.podMonitor.selector Prometheus instance selector labels
1232 ## @param msgTopologyOperator.metrics.podMonitor.interval Specify the interval at which metrics should be scraped
1235 ## @param msgTopologyOperator.metrics.podMonitor.scrapeTimeout Specify the timeout after which the scrape is ended
1238 ## @param msgTopologyOperator.metrics.podMonitor.additionalLabels [object] Additional labels that can be used so PodMonitors will be discovered by Prometheus
1240 additionalLabels: {}
1241 ## @param msgTopologyOperator.metrics.podMonitor.relabelings Specify general relabeling
1244 ## @param msgTopologyOperator.metrics.podMonitor.metricRelabelings Specify additional relabeling of metrics
1246 metricRelabelings: []
1247## @section cert-manager parameters
1250## @param useCertManager Deploy cert-manager objects (Issuer and Certificate) for webhooks
1252useCertManager: false