1194 lines
43 KiB
YAML
1194 lines
43 KiB
YAML
## @section Global parameters
|
|
## Global Docker image parameters
|
|
## Please, note that this will override the image parameters, including dependencies, configured to use the global value
|
|
## Current available global Docker image parameters: imageRegistry, imagePullSecrets and storageClass
|
|
|
|
## @param global.imageRegistry Global Docker image registry
|
|
## @param global.imagePullSecrets Global Docker registry secret names as an array
|
|
## @param global.storageClass Global StorageClass for Persistent Volume(s)
|
|
##
|
|
global:
|
|
imageRegistry: ""
|
|
## E.g.
|
|
## imagePullSecrets:
|
|
## - myRegistryKeySecretName
|
|
##
|
|
imagePullSecrets: []
|
|
storageClass: ""
|
|
|
|
## @section RabbitMQ Image parameters
|
|
## Bitnami RabbitMQ image version
|
|
## ref: https://hub.docker.com/r/bitnami/rabbitmq/tags/
|
|
## @param image.registry RabbitMQ image registry
|
|
## @param image.repository RabbitMQ image repository
|
|
## @param image.tag RabbitMQ image tag (immutable tags are recommended)
|
|
## @param image.pullPolicy RabbitMQ image pull policy
|
|
## @param image.pullSecrets Specify docker-registry secret names as an array
|
|
## @param image.debug Set to true if you would like to see extra information on logs
|
|
##
|
|
image:
|
|
registry: docker.io
|
|
repository: bitnami/rabbitmq
|
|
tag: 3.9.11-debian-10-r0
|
|
|
|
## set to true if you would like to see extra information on logs
|
|
## It turns BASH and/or NAMI debugging in the image
|
|
##
|
|
debug: false
|
|
|
|
## Specify a imagePullPolicy
|
|
## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent'
|
|
## ref: https://kubernetes.io/docs/user-guide/images/#pre-pulling-images
|
|
##
|
|
pullPolicy: IfNotPresent
|
|
## Optionally specify an array of imagePullSecrets.
|
|
## Secrets must be manually created in the namespace.
|
|
## ref: https://kubernetes.io/docs/tasks/configure-pod-container/pull-image-private-registry/
|
|
## Example:
|
|
## pullSecrets:
|
|
## - myRegistryKeySecretName
|
|
##
|
|
pullSecrets: []
|
|
|
|
## @section Common parameters
|
|
|
|
## @param nameOverride String to partially override rabbitmq.fullname template (will maintain the release name)
|
|
##
|
|
nameOverride: ""
|
|
|
|
## @param fullnameOverride String to fully override rabbitmq.fullname template
|
|
##
|
|
fullnameOverride: ""
|
|
|
|
## @param kubeVersion Force target Kubernetes version (using Helm capabilities if not set)
|
|
##
|
|
kubeVersion: ""
|
|
|
|
## @param clusterDomain Kubernetes Cluster Domain
|
|
##
|
|
clusterDomain: cluster.local
|
|
|
|
## @param extraDeploy Array of extra objects to deploy with the release
|
|
##
|
|
extraDeploy: []
|
|
|
|
## Enable diagnostic mode in the deployment
|
|
##
|
|
diagnosticMode:
|
|
## @param diagnosticMode.enabled Enable diagnostic mode (all probes will be disabled and the command will be overridden)
|
|
##
|
|
enabled: false
|
|
## @param diagnosticMode.command Command to override all containers in the deployment
|
|
##
|
|
command:
|
|
- sleep
|
|
## @param diagnosticMode.args Args to override all containers in the deployment
|
|
##
|
|
args:
|
|
- infinity
|
|
|
|
## @param hostAliases Deployment pod host aliases
|
|
## https://kubernetes.io/docs/concepts/services-networking/add-entries-to-pod-etc-hosts-with-host-aliases/
|
|
##
|
|
hostAliases: []
|
|
## @param commonAnnotations Annotations to add to all deployed objects
|
|
##
|
|
commonAnnotations: {}
|
|
## RabbitMQ Authentication parameters
|
|
##
|
|
auth:
|
|
## @param auth.username RabbitMQ application username
|
|
## ref: https://github.com/bitnami/bitnami-docker-rabbitmq#environment-variables
|
|
##
|
|
username: root
|
|
|
|
## @param auth.password RabbitMQ application password
|
|
## ref: https://github.com/bitnami/bitnami-docker-rabbitmq#environment-variables
|
|
##
|
|
password: "gkxl650"
|
|
## @param auth.existingPasswordSecret Existing secret with RabbitMQ credentials (must contain a value for `rabbitmq-password` key)
|
|
## e.g:
|
|
## existingPasswordSecret: name-of-existing-secret
|
|
##
|
|
existingPasswordSecret: ""
|
|
|
|
## @param auth.erlangCookie Erlang cookie to determine whether different nodes are allowed to communicate with each other
|
|
## ref: https://github.com/bitnami/bitnami-docker-rabbitmq#environment-variables
|
|
##
|
|
erlangCookie: "gkxl650"
|
|
## @param auth.existingErlangSecret Existing secret with RabbitMQ Erlang cookie (must contain a value for `rabbitmq-erlang-cookie` key)
|
|
## e.g:
|
|
## existingErlangSecret: name-of-existing-secret
|
|
##
|
|
existingErlangSecret: ""
|
|
|
|
## Enable encryption to rabbitmq
|
|
## ref: https://www.rabbitmq.com/ssl.html
|
|
## @param auth.tls.enabled Enable TLS support on RabbitMQ
|
|
## @param auth.tls.autoGenerated Generate automatically self-signed TLS certificates
|
|
## @param auth.tls.failIfNoPeerCert When set to true, TLS connection will be rejected if client fails to provide a certificate
|
|
## @param auth.tls.sslOptionsVerify Should [peer verification](https://www.rabbitmq.com/ssl.html#peer-verification) be enabled?
|
|
## @param auth.tls.caCertificate Certificate Authority (CA) bundle content
|
|
## @param auth.tls.serverCertificate Server certificate content
|
|
## @param auth.tls.serverKey Server private key content
|
|
## @param auth.tls.existingSecret Existing secret with certificate content to RabbitMQ credentials
|
|
## @param auth.tls.existingSecretFullChain Whether or not the existing secret contains the full chain in the certificate (`tls.crt`). Will be used in place of `ca.cert` if `true`.
|
|
##
|
|
tls:
|
|
enabled: false
|
|
autoGenerated: false
|
|
failIfNoPeerCert: true
|
|
sslOptionsVerify: verify_peer
|
|
caCertificate: |-
|
|
serverCertificate: |-
|
|
serverKey: |-
|
|
existingSecret: ""
|
|
existingSecretFullChain: false
|
|
|
|
## @param logs Path of the RabbitMQ server's Erlang log file. Value for the `RABBITMQ_LOGS` environment variable
|
|
## ref: https://www.rabbitmq.com/logging.html#log-file-location
|
|
##
|
|
logs: "-"
|
|
|
|
## @param ulimitNofiles RabbitMQ Max File Descriptors
|
|
## ref: https://github.com/bitnami/bitnami-docker-rabbitmq#environment-variables
|
|
## ref: https://www.rabbitmq.com/install-debian.html#kernel-resource-limits
|
|
##
|
|
ulimitNofiles: "65536"
|
|
|
|
## RabbitMQ maximum available scheduler threads and online scheduler threads. By default it will create a thread per CPU detected, with the following parameters you can tune it manually.
|
|
## ref: https://hamidreza-s.github.io/erlang/scheduling/real-time/preemptive/migration/2016/02/09/erlang-scheduler-details.html#scheduler-threads
|
|
## ref: https://github.com/bitnami/charts/issues/2189
|
|
## @param maxAvailableSchedulers RabbitMQ maximum available scheduler threads
|
|
## @param onlineSchedulers RabbitMQ online scheduler threads
|
|
##
|
|
maxAvailableSchedulers: ""
|
|
onlineSchedulers: ""
|
|
|
|
## The memory threshold under which RabbitMQ will stop reading from client network sockets, in order to avoid being killed by the OS
|
|
## ref: https://www.rabbitmq.com/alarms.html
|
|
## ref: https://www.rabbitmq.com/memory.html#threshold
|
|
##
|
|
memoryHighWatermark:
|
|
## @param memoryHighWatermark.enabled Enable configuring Memory high watermark on RabbitMQ
|
|
##
|
|
enabled: false
|
|
## @param memoryHighWatermark.type Memory high watermark type. Either `absolute` or `relative`
|
|
##
|
|
type: "relative"
|
|
## Memory high watermark value.
|
|
## @param memoryHighWatermark.value Memory high watermark value
|
|
## The default value of 0.4 stands for 40% of available RAM
|
|
## Note: the memory relative limit is applied to the resource.limits.memory to calculate the memory threshold
|
|
## You can also use an absolute value, e.g.: 256MB
|
|
##
|
|
value: 0.4
|
|
|
|
## @param plugins List of default plugins to enable (should only be altered to remove defaults; for additional plugins use `extraPlugins`)
|
|
##
|
|
plugins: "rabbitmq_management rabbitmq_peer_discovery_k8s rabbitmq_stomp rabbitmq_web_stomp"
|
|
|
|
## @param communityPlugins List of Community plugins (URLs) to be downloaded during container initialization
|
|
## Combine it with extraPlugins to also enable them.
|
|
##
|
|
communityPlugins: ""
|
|
|
|
## @param extraPlugins Extra plugins to enable (single string containing a space-separated list)
|
|
## Use this instead of `plugins` to add new plugins
|
|
##
|
|
extraPlugins: "rabbitmq_auth_backend_ldap"
|
|
|
|
## Clustering settings
|
|
##
|
|
clustering:
|
|
## @param clustering.enabled Enable RabbitMQ clustering
|
|
##
|
|
enabled: true
|
|
## @param clustering.addressType Switch clustering mode. Either `ip` or `hostname`
|
|
##
|
|
addressType: hostname
|
|
## @param clustering.rebalance Rebalance master for queues in cluster when new replica is created
|
|
## ref: https://www.rabbitmq.com/rabbitmq-queues.8.html#rebalance
|
|
##
|
|
rebalance: false
|
|
|
|
## @param clustering.forceBoot Force boot of an unexpectedly shut down cluster (in an unexpected order).
|
|
## forceBoot executes 'rabbitmqctl force_boot' to force boot cluster shut down unexpectedly in an unknown order
|
|
## ref: https://www.rabbitmq.com/rabbitmqctl.8.html#force_boot
|
|
##
|
|
forceBoot: false
|
|
|
|
## @param clustering.partitionHandling Switch Partition Handling Strategy. Either `autoheal` or `pause-minority` or `pause-if-all-down` or `ignore`
|
|
## ref: https://www.rabbitmq.com/partitions.html#automatic-handling
|
|
##
|
|
partitionHandling: autoheal
|
|
|
|
## Loading a RabbitMQ definitions file to configure RabbitMQ
|
|
##
|
|
loadDefinition:
|
|
## @param loadDefinition.enabled Enable loading a RabbitMQ definitions file to configure RabbitMQ
|
|
##
|
|
enabled: false
|
|
## @param loadDefinition.existingSecret Existing secret with the load definitions file
|
|
## Can be templated if needed, e.g:
|
|
## existingSecret: "{{ .Release.Name }}-load-definition"
|
|
##
|
|
existingSecret: ""
|
|
|
|
## @param command Override default container command (useful when using custom images)
|
|
##
|
|
command: []
|
|
## @param args Override default container args (useful when using custom images)
|
|
args: []
|
|
|
|
## @param terminationGracePeriodSeconds Default duration in seconds k8s waits for container to exit before sending kill signal.
|
|
## Any time in excess of 10 seconds will be spent waiting for any synchronization necessary for cluster not to lose data.
|
|
##
|
|
terminationGracePeriodSeconds: 120
|
|
|
|
## @param extraEnvVars Extra environment variables to add to RabbitMQ pods
|
|
## E.g:
|
|
## extraEnvVars:
|
|
## - name: FOO
|
|
## value: BAR
|
|
##
|
|
extraEnvVars:
|
|
- name: TZ
|
|
value: "Asia/Shanghai"
|
|
# extraEnvVars: []
|
|
|
|
## @param extraEnvVarsCM Name of existing ConfigMap containing extra environment variables
|
|
##
|
|
extraEnvVarsCM: ""
|
|
|
|
## @param extraEnvVarsSecret Name of existing Secret containing extra environment variables (in case of sensitive data)
|
|
##
|
|
extraEnvVarsSecret: ""
|
|
|
|
## @param extraContainerPorts Extra ports to be included in container spec, primarily informational
|
|
## E.g:
|
|
## extraContainerPorts:
|
|
## - name: new_port_name
|
|
## containerPort: 1234
|
|
##
|
|
extraContainerPorts: []
|
|
|
|
## @param configuration [string] RabbitMQ Configuration file content: required cluster configuration
|
|
## Do not override unless you know what you are doing.
|
|
## To add more configuration, use `extraConfiguration` of `advancedConfiguration` instead
|
|
##$RABBITMQ_ERLANG_COOKIE
|
|
configuration: |-
|
|
management.path_prefix = /mq
|
|
{{- if not .Values.loadDefinition.enabled -}}
|
|
## Username and password
|
|
##
|
|
default_user = {{ .Values.auth.username }}
|
|
default_pass = CHANGEME
|
|
{{- end }}
|
|
{{- if .Values.clustering.enabled }}
|
|
## Clustering
|
|
##
|
|
cluster_formation.peer_discovery_backend = rabbit_peer_discovery_k8s
|
|
cluster_formation.k8s.host = kubernetes.default.svc.{{ .Values.clusterDomain }}
|
|
cluster_formation.node_cleanup.interval = 10
|
|
cluster_formation.node_cleanup.only_log_warning = true
|
|
cluster_partition_handling = {{ .Values.clustering.partitionHandling }}
|
|
{{- end }}
|
|
# queue master locator
|
|
queue_master_locator = min-masters
|
|
# enable guest user
|
|
loopback_users.guest = false
|
|
{{ tpl .Values.extraConfiguration . }}
|
|
{{- if .Values.auth.tls.enabled }}
|
|
ssl_options.verify = {{ .Values.auth.tls.sslOptionsVerify }}
|
|
listeners.ssl.default = {{ .Values.service.tlsPort }}
|
|
ssl_options.fail_if_no_peer_cert = {{ .Values.auth.tls.failIfNoPeerCert }}
|
|
ssl_options.cacertfile = /opt/bitnami/rabbitmq/certs/ca_certificate.pem
|
|
ssl_options.certfile = /opt/bitnami/rabbitmq/certs/server_certificate.pem
|
|
ssl_options.keyfile = /opt/bitnami/rabbitmq/certs/server_key.pem
|
|
{{- end }}
|
|
{{- if .Values.ldap.enabled }}
|
|
auth_backends.1 = rabbit_auth_backend_ldap
|
|
auth_backends.2 = internal
|
|
{{- range $index, $server := .Values.ldap.servers }}
|
|
auth_ldap.servers.{{ add $index 1 }} = {{ $server }}
|
|
{{- end }}
|
|
auth_ldap.port = {{ .Values.ldap.port }}
|
|
auth_ldap.user_dn_pattern = {{ .Values.ldap.user_dn_pattern }}
|
|
{{- if .Values.ldap.tls.enabled }}
|
|
auth_ldap.use_ssl = true
|
|
{{- end }}
|
|
{{- end }}
|
|
{{- if .Values.metrics.enabled }}
|
|
## Prometheus metrics
|
|
##
|
|
prometheus.tcp.port = 9419
|
|
{{- end }}
|
|
{{- if .Values.memoryHighWatermark.enabled }}
|
|
## Memory Threshold
|
|
##
|
|
total_memory_available_override_value = {{ include "rabbitmq.toBytes" .Values.resources.limits.memory }}
|
|
vm_memory_high_watermark.{{ .Values.memoryHighWatermark.type }} = {{ .Values.memoryHighWatermark.value }}
|
|
{{- end }}
|
|
|
|
## @param extraConfiguration [string] Configuration file content: extra configuration to be appended to RabbitMQ configuration
|
|
## Use this instead of `configuration` to add more configuration
|
|
##
|
|
extraConfiguration: |-
|
|
#default_vhost = {{ .Release.Namespace }}-vhost
|
|
#disk_free_limit.absolute = 50MB
|
|
#load_definitions = /app/load_definition.json
|
|
|
|
## @param advancedConfiguration Configuration file content: advanced configuration
|
|
## Use this as additional configuration in classic config format (Erlang term configuration format)
|
|
##
|
|
## If you set LDAP with TLS/SSL enabled and you are using self-signed certificates, uncomment these lines.
|
|
## advancedConfiguration: |-
|
|
## [{
|
|
## rabbitmq_auth_backend_ldap,
|
|
## [{
|
|
## ssl_options,
|
|
## [{
|
|
## verify, verify_none
|
|
## }, {
|
|
## fail_if_no_peer_cert,
|
|
## false
|
|
## }]
|
|
## ]}
|
|
## }].
|
|
##
|
|
advancedConfiguration: |-
|
|
|
|
## LDAP configuration
|
|
##
|
|
ldap:
|
|
## @param ldap.enabled Enable LDAP support
|
|
##
|
|
enabled: false
|
|
## @param ldap.servers List of LDAP servers hostnames
|
|
##
|
|
servers: []
|
|
## @param ldap.port LDAP servers port
|
|
##
|
|
port: "389"
|
|
## Pattern used to translate the provided username into a value to be used for the LDAP bind
|
|
## @param ldap.user_dn_pattern Pattern used to translate the provided username into a value to be used for the LDAP bind
|
|
## ref: https://www.rabbitmq.com/ldap.html#usernames-and-dns
|
|
##
|
|
user_dn_pattern: cn=${username},dc=example,dc=org
|
|
tls:
|
|
## @param ldap.tls.enabled If you enable TLS/SSL you can set advanced options using the `advancedConfiguration` parameter
|
|
##
|
|
enabled: false
|
|
|
|
## @param extraVolumeMounts Optionally specify extra list of additional volumeMounts
|
|
## Examples:
|
|
## extraVolumeMounts:
|
|
## - name: extras
|
|
## mountPath: /usr/share/extras
|
|
## readOnly: true
|
|
##
|
|
extraVolumeMounts: []
|
|
## @param extraVolumes Optionally specify extra list of additional volumes .
|
|
## Example:
|
|
## extraVolumes:
|
|
## - name: extras
|
|
## emptyDir: {}
|
|
##
|
|
extraVolumes: []
|
|
|
|
## @param extraSecrets Optionally specify extra secrets to be created by the chart.
|
|
## This can be useful when combined with load_definitions to automatically create the secret containing the definitions to be loaded.
|
|
## Example:
|
|
## extraSecrets:
|
|
## load-definition:
|
|
## load_definition.json: |
|
|
## {
|
|
## ...
|
|
## }
|
|
##
|
|
extraSecrets: {}
|
|
## @param extraSecretsPrependReleaseName Set this flag to true if extraSecrets should be created with <release-name> prepended.
|
|
##
|
|
extraSecretsPrependReleaseName: false
|
|
|
|
## @section Statefulset parameters
|
|
|
|
## @param replicaCount Number of RabbitMQ replicas to deploy
|
|
##
|
|
replicaCount: 1
|
|
|
|
## @param schedulerName Use an alternate scheduler, e.g. "stork".
|
|
## ref: https://kubernetes.io/docs/tasks/administer-cluster/configure-multiple-schedulers/
|
|
##
|
|
schedulerName: ""
|
|
|
|
## RabbitMQ should be initialized one by one when building cluster for the first time.
|
|
## Therefore, the default value of podManagementPolicy is 'OrderedReady'
|
|
## Once the RabbitMQ participates in the cluster, it waits for a response from another
|
|
## RabbitMQ in the same cluster at reboot, except the last RabbitMQ of the same cluster.
|
|
## If the cluster exits gracefully, you do not need to change the podManagementPolicy
|
|
## because the first RabbitMQ of the statefulset always will be last of the cluster.
|
|
## However if the last RabbitMQ of the cluster is not the first RabbitMQ due to a failure,
|
|
## you must change podManagementPolicy to 'Parallel'.
|
|
## ref : https://www.rabbitmq.com/clustering.html#restarting
|
|
## @param podManagementPolicy Pod management policy
|
|
##
|
|
podManagementPolicy: OrderedReady
|
|
|
|
## @param podLabels RabbitMQ Pod labels. Evaluated as a template
|
|
## Ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/
|
|
##
|
|
podLabels: {}
|
|
|
|
## @param podAnnotations RabbitMQ Pod annotations. Evaluated as a template
|
|
## ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations/
|
|
##
|
|
podAnnotations: {}
|
|
|
|
## @param updateStrategyType Update strategy type for RabbitMQ statefulset
|
|
## ref: https://kubernetes.io/docs/concepts/workloads/controllers/statefulset/#update-strategies
|
|
##
|
|
updateStrategyType: RollingUpdate
|
|
|
|
## @param statefulsetLabels RabbitMQ statefulset labels. Evaluated as a template
|
|
## Ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/
|
|
##
|
|
statefulsetLabels: {}
|
|
|
|
## @param priorityClassName Name of the priority class to be used by RabbitMQ pods, priority class needs to be created beforehand
|
|
## Ref: https://kubernetes.io/docs/concepts/configuration/pod-priority-preemption/
|
|
##
|
|
priorityClassName: ""
|
|
|
|
## @param podAffinityPreset Pod affinity preset. Ignored if `affinity` is set. Allowed values: `soft` or `hard`
|
|
## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#inter-pod-affinity-and-anti-affinity
|
|
##
|
|
podAffinityPreset: ""
|
|
|
|
## @param podAntiAffinityPreset Pod anti-affinity preset. Ignored if `affinity` is set. Allowed values: `soft` or `hard`
|
|
## Ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#inter-pod-affinity-and-anti-affinity
|
|
##
|
|
podAntiAffinityPreset: soft
|
|
|
|
## Node affinity preset
|
|
## Ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#node-affinity
|
|
##
|
|
nodeAffinityPreset:
|
|
## @param nodeAffinityPreset.type Node affinity preset type. Ignored if `affinity` is set. Allowed values: `soft` or `hard`
|
|
##
|
|
type: ""
|
|
## @param nodeAffinityPreset.key Node label key to match Ignored if `affinity` is set.
|
|
## E.g.
|
|
## key: "kubernetes.io/e2e-az-name"
|
|
##
|
|
key: ""
|
|
## @param nodeAffinityPreset.values Node label values to match. Ignored if `affinity` is set.
|
|
## E.g.
|
|
## values:
|
|
## - e2e-az1
|
|
## - e2e-az2
|
|
##
|
|
values: []
|
|
|
|
## @param affinity Affinity for pod assignment. Evaluated as a template
|
|
## Ref: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/#affinity-and-anti-affinity
|
|
## Note: podAffinityPreset, podAntiAffinityPreset, and nodeAffinityPreset will be ignored when it's set
|
|
##
|
|
affinity: {}
|
|
|
|
## @param nodeSelector Node labels for pod assignment. Evaluated as a template
|
|
## ref: https://kubernetes.io/docs/user-guide/node-selection/
|
|
##
|
|
nodeSelector: {}
|
|
|
|
## @param tolerations Tolerations for pod assignment. Evaluated as a template
|
|
## Ref: https://kubernetes.io/docs/concepts/configuration/taint-and-toleration/
|
|
##
|
|
tolerations: []
|
|
|
|
## @param topologySpreadConstraints Topology Spread Constraints for pod assignment spread across your cluster among failure-domains. Evaluated as a template
|
|
## Ref: https://kubernetes.io/docs/concepts/workloads/pods/pod-topology-spread-constraints/#spread-constraints-for-pods
|
|
##
|
|
topologySpreadConstraints: []
|
|
|
|
## RabbitMQ pods' Security Context
|
|
## ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-pod
|
|
## @param podSecurityContext.enabled Enable RabbitMQ pods' Security Context
|
|
## @param podSecurityContext.fsGroup Group ID for the filesystem used by the containers
|
|
## @param podSecurityContext.runAsUser User ID for the service user running the pod
|
|
##
|
|
podSecurityContext:
|
|
enabled: true
|
|
fsGroup: 1001
|
|
runAsUser: 1001
|
|
|
|
## @param containerSecurityContext RabbitMQ containers' Security Context
|
|
## ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-container
|
|
## Example:
|
|
## containerSecurityContext:
|
|
## capabilities:
|
|
## drop: ["NET_RAW"]
|
|
## readOnlyRootFilesystem: true
|
|
##
|
|
containerSecurityContext: {}
|
|
|
|
## RabbitMQ containers' resource requests and limits
|
|
## ref: https://kubernetes.io/docs/user-guide/compute-resources/
|
|
## We usually recommend not to specify default resources and to leave this as a conscious
|
|
## choice for the user. This also increases chances charts run on environments with little
|
|
## resources, such as Minikube. If you do want to specify resources, uncomment the following
|
|
## lines, adjust them as necessary, and remove the curly braces after 'resources:'.
|
|
## @param resources.limits The resources limits for RabbitMQ containers
|
|
## @param resources.requests The requested resources for RabbitMQ containers
|
|
##
|
|
resources:
|
|
## Example:
|
|
## limits:
|
|
## cpu: 1000m
|
|
## memory: 2Gi
|
|
limits: {}
|
|
## Examples:
|
|
## requests:
|
|
## cpu: 1000m
|
|
## memory: 2Gi
|
|
requests: {}
|
|
|
|
## Configure RabbitMQ containers' extra options for liveness probe
|
|
## ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-probes/#configure-probes
|
|
## @param livenessProbe.enabled Enable livenessProbe
|
|
## @param livenessProbe.initialDelaySeconds Initial delay seconds for livenessProbe
|
|
## @param livenessProbe.periodSeconds Period seconds for livenessProbe
|
|
## @param livenessProbe.timeoutSeconds Timeout seconds for livenessProbe
|
|
## @param livenessProbe.failureThreshold Failure threshold for livenessProbe
|
|
## @param livenessProbe.successThreshold Success threshold for livenessProbe
|
|
##
|
|
livenessProbe:
|
|
enabled: true
|
|
initialDelaySeconds: 120
|
|
timeoutSeconds: 20
|
|
periodSeconds: 30
|
|
failureThreshold: 6
|
|
successThreshold: 1
|
|
## Configure RabbitMQ containers' extra options for readiness probe
|
|
## ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-probes/#configure-probes
|
|
## @param readinessProbe.enabled Enable readinessProbe
|
|
## @param readinessProbe.initialDelaySeconds Initial delay seconds for readinessProbe
|
|
## @param readinessProbe.periodSeconds Period seconds for readinessProbe
|
|
## @param readinessProbe.timeoutSeconds Timeout seconds for readinessProbe
|
|
## @param readinessProbe.failureThreshold Failure threshold for readinessProbe
|
|
## @param readinessProbe.successThreshold Success threshold for readinessProbe
|
|
##
|
|
readinessProbe:
|
|
enabled: true
|
|
initialDelaySeconds: 10
|
|
timeoutSeconds: 20
|
|
periodSeconds: 30
|
|
failureThreshold: 3
|
|
successThreshold: 1
|
|
|
|
## @param customLivenessProbe Override default liveness probe
|
|
##
|
|
customLivenessProbe: {}
|
|
|
|
## @param customReadinessProbe Override default readiness probe
|
|
##
|
|
customReadinessProbe: {}
|
|
|
|
## @param customStartupProbe Define a custom startup probe
|
|
## ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-startup-probes/#define-startup-probes
|
|
##
|
|
customStartupProbe: {}
|
|
|
|
## @param initContainers Add init containers to the RabbitMQ pod
|
|
## Example:
|
|
## initContainers:
|
|
## - name: your-image-name
|
|
## image: your-image
|
|
## imagePullPolicy: Always
|
|
## ports:
|
|
## - name: portname
|
|
## containerPort: 1234
|
|
##
|
|
initContainers: []
|
|
|
|
## @param sidecars Add sidecar containers to the RabbitMQ pod
|
|
## Example:
|
|
## sidecars:
|
|
## - name: your-image-name
|
|
## image: your-image
|
|
## imagePullPolicy: Always
|
|
## ports:
|
|
## - name: portname
|
|
## containerPort: 1234
|
|
##
|
|
sidecars: []
|
|
|
|
## Pod Disruption Budget configuration
|
|
## ref: https://kubernetes.io/docs/tasks/run-application/configure-pdb/
|
|
##
|
|
pdb:
|
|
## @param pdb.create Enable/disable a Pod Disruption Budget creation
|
|
##
|
|
create: false
|
|
## @param pdb.minAvailable Minimum number/percentage of pods that should remain scheduled
|
|
##
|
|
minAvailable: 1
|
|
## @param pdb.maxUnavailable Maximum number/percentage of pods that may be made unavailable
|
|
##
|
|
maxUnavailable: ""
|
|
|
|
## @section RBAC parameters
|
|
|
|
## RabbitMQ pods ServiceAccount
|
|
## ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-service-account/
|
|
##
|
|
serviceAccount:
|
|
## @param serviceAccount.create Enable creation of ServiceAccount for RabbitMQ pods
|
|
##
|
|
create: true
|
|
## @param serviceAccount.name Name of the created serviceAccount
|
|
## If not set and create is true, a name is generated using the rabbitmq.fullname template
|
|
##
|
|
name: ""
|
|
## @param serviceAccount.automountServiceAccountToken Auto-mount the service account token in the pod
|
|
##
|
|
automountServiceAccountToken: true
|
|
|
|
## Role Based Access
|
|
## ref: https://kubernetes.io/docs/admin/authorization/rbac/
|
|
##
|
|
rbac:
|
|
## @param rbac.create Whether RBAC rules should be created
|
|
## binding RabbitMQ ServiceAccount to a role
|
|
## that allows RabbitMQ pods querying the K8s API
|
|
##
|
|
create: true
|
|
|
|
## @section Persistence parameters
|
|
|
|
persistence:
|
|
## @param persistence.enabled Enable RabbitMQ data persistence using PVC
|
|
##
|
|
enabled: true
|
|
|
|
## @param persistence.storageClass PVC Storage Class for RabbitMQ data volume
|
|
## If defined, storageClassName: <storageClass>
|
|
## If set to "-", storageClassName: "", which disables dynamic provisioning
|
|
## If undefined (the default) or set to null, no storageClassName spec is
|
|
## set, choosing the default provisioner. (gp2 on AWS, standard on
|
|
## GKE, AWS & OpenStack)
|
|
##
|
|
storageClass: ""
|
|
## @param persistence.selector Selector to match an existing Persistent Volume
|
|
## selector:
|
|
## matchLabels:
|
|
## app: my-app
|
|
##
|
|
selector: {}
|
|
## @param persistence.accessMode PVC Access Mode for RabbitMQ data volume
|
|
##
|
|
accessMode: ReadWriteOnce
|
|
|
|
## @param persistence.existingClaim Provide an existing PersistentVolumeClaims
|
|
## The value is evaluated as a template
|
|
## So, for example, the name can depend on .Release or .Chart
|
|
##
|
|
existingClaim: "data-rabbitmq-0"
|
|
|
|
## @param persistence.size PVC Storage Request for RabbitMQ data volume
|
|
## If you change this value, you might have to adjust `rabbitmq.diskFreeLimit` as well
|
|
##
|
|
size: 8Gi
|
|
|
|
## @param persistence.volumes Additional volumes without creating PVC
|
|
## - name: volume_name
|
|
## emptyDir: {}
|
|
##
|
|
volumes: []
|
|
## @param persistence.annotations Persistence annotations. Evaluated as a template
|
|
## Example:
|
|
## annotations:
|
|
## example.io/disk-volume-type: SSD
|
|
##
|
|
annotations: {}
|
|
|
|
## @section Exposure parameters
|
|
|
|
## Kubernetes service type
|
|
##
|
|
service:
|
|
## @param service.type Kubernetes Service type
|
|
##
|
|
type: NodePort
|
|
|
|
## @param service.portEnabled Amqp port. Cannot be disabled when `auth.tls.enabled` is `false`. Listener can be disabled with `listeners.tcp = none`.
|
|
portEnabled: true
|
|
|
|
## @param service.port Amqp port
|
|
## ref: https://github.com/bitnami/bitnami-docker-rabbitmq#environment-variables
|
|
##
|
|
port: 5672
|
|
|
|
## @param service.portName Amqp service port name
|
|
##
|
|
portName: amqp
|
|
|
|
## @param service.tlsPort Amqp TLS port
|
|
##
|
|
tlsPort: 5671
|
|
|
|
## @param service.tlsPortName Amqp TLS service port name
|
|
##
|
|
tlsPortName: amqp-ssl
|
|
|
|
## @param service.nodePort Node port override for `amqp` port, if serviceType is `NodePort` or `LoadBalancer`
|
|
## ref: https://github.com/bitnami/bitnami-docker-rabbitmq#environment-variables
|
|
## e.g:
|
|
## nodePort: 30672
|
|
##
|
|
nodePort: "31072"
|
|
|
|
## @param service.tlsNodePort Node port override for `amqp-ssl` port, if serviceType is `NodePort` or `LoadBalancer`
|
|
## e.g:
|
|
## tlsNodePort: 30671
|
|
##
|
|
tlsNodePort: ""
|
|
|
|
## @param service.distPort Erlang distribution server port
|
|
## ref: https://github.com/bitnami/bitnami-docker-rabbitmq#environment-variables
|
|
##
|
|
distPort: 25672
|
|
|
|
## @param service.distPortName Erlang distribution service port name
|
|
##
|
|
distPortName: dist
|
|
|
|
## @param service.distNodePort Node port override for `dist` port, if serviceType is `NodePort`
|
|
## e.g:
|
|
## distNodePort: 30676
|
|
##
|
|
distNodePort: "31272"
|
|
|
|
## @param service.managerPortEnabled RabbitMQ Manager port
|
|
## ref: https://github.com/bitnami/bitnami-docker-rabbitmq#environment-variables
|
|
##
|
|
managerPortEnabled: true
|
|
|
|
## @param service.managerPort RabbitMQ Manager port
|
|
##
|
|
managerPort: 15672
|
|
|
|
## @param service.managerPortName RabbitMQ Manager service port name
|
|
##
|
|
managerPortName: http-stats
|
|
|
|
## @param service.managerNodePort Node port override for `http-stats` port, if serviceType `NodePort`
|
|
## e.g:
|
|
## managerNodePort: 30673
|
|
##
|
|
managerNodePort: "31172"
|
|
|
|
|
|
|
|
stompPortEnabled: true
|
|
|
|
## @param service.managerPort RabbitMQ Manager port
|
|
##
|
|
stompPort: 15674
|
|
|
|
## @param service.managerPortName RabbitMQ Manager service port name
|
|
##
|
|
stompPortName: http-stomp
|
|
|
|
## @param service.managerNodePort Node port override for `http-stats` port, if serviceType `NodePort`
|
|
## e.g:
|
|
## managerNodePort: 30673
|
|
##
|
|
stompNodePort: "31174"
|
|
|
|
## @param service.metricsPort RabbitMQ Prometheues metrics port
|
|
##
|
|
metricsPort: 9419
|
|
|
|
## @param service.metricsPortName RabbitMQ Prometheues metrics service port name
|
|
##
|
|
metricsPortName: metrics
|
|
|
|
## @param service.metricsNodePort Node port override for `metrics` port, if serviceType is `NodePort`
|
|
## e.g:
|
|
## metricsNodePort: 30674
|
|
##
|
|
metricsNodePort: ""
|
|
|
|
## @param service.epmdNodePort Node port override for `epmd` port, if serviceType is `NodePort`
|
|
## e.g:
|
|
## epmdNodePort: 30675
|
|
##
|
|
epmdNodePort: ""
|
|
|
|
## @param service.epmdPortName EPMD Discovery service port name
|
|
##
|
|
epmdPortName: epmd
|
|
|
|
## @param service.extraPorts Extra ports to expose in the service
|
|
## E.g.:
|
|
## extraPorts:
|
|
## - name: new_svc_name
|
|
## port: 1234
|
|
## targetPort: 1234
|
|
##
|
|
extraPorts: []
|
|
|
|
## @param service.loadBalancerSourceRanges Address(es) that are allowed when service is `LoadBalancer`
|
|
## https://kubernetes.io/docs/tasks/access-application-cluster/configure-cloud-provider-firewall/#restrict-access-for-loadbalancer-service
|
|
## e.g:
|
|
## loadBalancerSourceRanges:
|
|
## - 10.10.10.0/24
|
|
##
|
|
loadBalancerSourceRanges: []
|
|
|
|
## @param service.externalIPs Set the ExternalIPs
|
|
##
|
|
externalIPs: []
|
|
|
|
## @param service.externalTrafficPolicy Enable client source IP preservation
|
|
## ref https://kubernetes.io/docs/tasks/access-application-cluster/create-external-load-balancer/#preserving-the-client-source-ip
|
|
##
|
|
externalTrafficPolicy: Cluster
|
|
|
|
## @param service.loadBalancerIP Set the LoadBalancerIP
|
|
##
|
|
loadBalancerIP: ""
|
|
|
|
## @param service.labels Service labels. Evaluated as a template
|
|
##
|
|
labels: {}
|
|
|
|
## @param service.annotations Service annotations. Evaluated as a template
|
|
## Example:
|
|
## annotations:
|
|
## service.beta.kubernetes.io/aws-load-balancer-internal: 0.0.0.0/0
|
|
##
|
|
annotations: {}
|
|
## @param service.annotationsHeadless Headless Service annotations. Evaluated as a template
|
|
## Example:
|
|
## annotations:
|
|
## external-dns.alpha.kubernetes.io/internal-hostname: rabbitmq.example.com
|
|
##
|
|
annotationsHeadless: {}
|
|
|
|
## Configure the ingress resource that allows you to access the
|
|
## RabbitMQ installation. Set up the URL
|
|
## ref: https://kubernetes.io/docs/user-guide/ingress/
|
|
##
|
|
ingress:
|
|
## @param ingress.enabled Enable ingress resource for Management console
|
|
##
|
|
enabled: true
|
|
|
|
## @param ingress.path Path for the default host. You may need to set this to '/*' in order to use this with ALB ingress controllers.
|
|
##
|
|
path: /mq
|
|
|
|
## @param ingress.pathType Ingress path type
|
|
##
|
|
pathType: ImplementationSpecific
|
|
|
|
## @param ingress.hostname Default host for the ingress resource
|
|
##
|
|
hostname: crm1.sino-assist.com
|
|
|
|
## @param ingress.annotations Additional annotations for the Ingress resource. To enable certificate autogeneration, place here your cert-manager annotations.
|
|
## For a full list of possible ingress annotations, please see
|
|
## ref: https://github.com/kubernetes/ingress-nginx/blob/master/docs/user-guide/nginx-configuration/annotations.md
|
|
## Use this parameter to set the required annotations for cert-manager, see
|
|
## ref: https://cert-manager.io/docs/usage/ingress/#supported-annotations
|
|
##
|
|
## e.g:
|
|
## annotations:
|
|
## kubernetes.io/ingress.class: nginx
|
|
## cert-manager.io/cluster-issuer: cluster-issuer-name
|
|
##
|
|
annotations: {}
|
|
|
|
## @param ingress.tls Enable TLS configuration for the hostname defined at `ingress.hostname` parameter
|
|
## TLS certificates will be retrieved from a TLS secret with name: {{- printf "%s-tls" .Values.ingress.hostname }}
|
|
## You can:
|
|
## - Use the `ingress.secrets` parameter to create this TLS secret
|
|
## - Relay on cert-manager to create it by setting the corresponding annotations
|
|
## - Relay on Helm to create self-signed certificates by setting `ingress.selfSigned=true`
|
|
##
|
|
tls: false
|
|
|
|
## DEPRECATED: Use ingress.annotations instead of ingress.certManager
|
|
## certManager: false
|
|
##
|
|
|
|
## @param ingress.selfSigned Set this to true in order to create a TLS secret for this ingress record
|
|
## using self-signed certificates generated by Helm
|
|
##
|
|
selfSigned: false
|
|
|
|
## @param ingress.extraHosts The list of additional hostnames to be covered with this ingress record.
|
|
## Most likely the hostname above will be enough, but in the event more hosts are needed, this is an array
|
|
## e.g:
|
|
## extraHosts:
|
|
## - name: rabbitmq.local
|
|
## path: /
|
|
##
|
|
extraHosts: []
|
|
|
|
## @param ingress.extraTls The tls configuration for additional hostnames to be covered with this ingress record.
|
|
## see: https://kubernetes.io/docs/concepts/services-networking/ingress/#tls
|
|
## e.g:
|
|
## extraTls:
|
|
## - hosts:
|
|
## - rabbitmq.local
|
|
## secretName: rabbitmq.local-tls
|
|
##
|
|
extraTls: []
|
|
|
|
## @param ingress.secrets Custom TLS certificates as secrets
|
|
## NOTE: 'key' and 'certificate' are expected in PEM format
|
|
## NOTE: 'name' should line up with a 'secretName' set further up
|
|
## If it is not set and you're using cert-manager, this is unneeded, as it will create a secret for you with valid certificates
|
|
## If it is not set and you're NOT using cert-manager either, self-signed certificates will be created valid for 365 days
|
|
## It is also possible to create and manage the certificates outside of this helm chart
|
|
## Please see README.md for more information
|
|
## e.g:
|
|
## secrets:
|
|
## - name: rabbitmq.local-tls
|
|
## key: |-
|
|
## -----BEGIN RSA PRIVATE KEY-----
|
|
## ...
|
|
## -----END RSA PRIVATE KEY-----
|
|
## certificate: |-
|
|
## -----BEGIN CERTIFICATE-----
|
|
## ...
|
|
## -----END CERTIFICATE-----
|
|
##
|
|
secrets: []
|
|
|
|
## @param ingress.ingressClassName IngressClass that will be be used to implement the Ingress (Kubernetes 1.18+)
|
|
## This is supported in Kubernetes 1.18+ and required if you have more than one IngressClass marked as the default for your cluster .
|
|
## ref: https://kubernetes.io/blog/2020/04/02/improvements-to-the-ingress-api-in-kubernetes-1.18/
|
|
##
|
|
ingressClassName: ""
|
|
|
|
## Network Policy configuration
|
|
## ref: https://kubernetes.io/docs/concepts/services-networking/network-policies/
|
|
##
|
|
networkPolicy:
|
|
## @param networkPolicy.enabled Enable creation of NetworkPolicy resources
|
|
##
|
|
enabled: false
|
|
## @param networkPolicy.allowExternal Don't require client label for connections
|
|
## The Policy model to apply. When set to false, only pods with the correct
|
|
## client label will have network access to the ports RabbitMQ is listening
|
|
## on. When true, RabbitMQ will accept connections from any source
|
|
## (with the correct destination port).
|
|
##
|
|
allowExternal: true
|
|
## @param networkPolicy.additionalRules Additional NetworkPolicy Ingress "from" rules to set. Note that all rules are OR-ed.
|
|
## e.g:
|
|
## additionalRules:
|
|
## - matchLabels:
|
|
## - role: frontend
|
|
## - matchExpressions:
|
|
## - key: role
|
|
## operator: In
|
|
## values:
|
|
## - frontend
|
|
##
|
|
additionalRules: []
|
|
|
|
## @section Metrics Parameters
|
|
|
|
## Prometheus Metrics
|
|
##
|
|
metrics:
|
|
## @param metrics.enabled Enable exposing RabbitMQ metrics to be gathered by Prometheus
|
|
##
|
|
enabled: false
|
|
|
|
## @param metrics.plugins Plugins to enable Prometheus metrics in RabbitMQ
|
|
##
|
|
plugins: "rabbitmq_prometheus"
|
|
## Prometheus pod annotations
|
|
## @param metrics.podAnnotations [object] Annotations for enabling prometheus to access the metrics endpoint
|
|
## ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations/
|
|
##
|
|
podAnnotations:
|
|
prometheus.io/scrape: "true"
|
|
prometheus.io/port: "{{ .Values.service.metricsPort }}"
|
|
|
|
## Prometheus Service Monitor
|
|
## ref: https://github.com/coreos/prometheus-operator
|
|
##
|
|
serviceMonitor:
|
|
## @param metrics.serviceMonitor.enabled Create ServiceMonitor Resource for scraping metrics using PrometheusOperator
|
|
##
|
|
enabled: false
|
|
## @param metrics.serviceMonitor.namespace Specify the namespace in which the serviceMonitor resource will be created
|
|
##
|
|
namespace: ""
|
|
## @param metrics.serviceMonitor.interval Specify the interval at which metrics should be scraped
|
|
##
|
|
interval: 30s
|
|
## @param metrics.serviceMonitor.scrapeTimeout Specify the timeout after which the scrape is ended
|
|
## e.g:
|
|
## scrapeTimeout: 30s
|
|
##
|
|
scrapeTimeout: ""
|
|
## @param metrics.serviceMonitor.relabellings Specify Metric Relabellings to add to the scrape endpoint
|
|
##
|
|
relabellings: []
|
|
## @param metrics.serviceMonitor.honorLabels honorLabels chooses the metric's labels on collisions with target labels
|
|
##
|
|
honorLabels: false
|
|
## @param metrics.serviceMonitor.additionalLabels Used to pass Labels that are required by the installed Prometheus Operator
|
|
## ref: https://github.com/coreos/prometheus-operator/blob/master/Documentation/api.md#prometheusspec
|
|
##
|
|
additionalLabels: {}
|
|
## @param metrics.serviceMonitor.targetLabels Used to keep given service's labels in target
|
|
## e.g:
|
|
## - app.kubernetes.io/name
|
|
##
|
|
targetLabels: {}
|
|
## @param metrics.serviceMonitor.podTargetLabels Used to keep given pod's labels in target
|
|
## e.g:
|
|
## - app.kubernetes.io/name
|
|
##
|
|
podTargetLabels: {}
|
|
## @param metrics.serviceMonitor.path Define the path used by ServiceMonitor to scrap metrics
|
|
## Could be /metrics for aggregated metrics or /metrics/per-object for more details
|
|
path: ""
|
|
|
|
## Custom PrometheusRule to be defined
|
|
## The value is evaluated as a template, so, for example, the value can depend on .Release or .Chart
|
|
## ref: https://github.com/coreos/prometheus-operator#customresourcedefinitions
|
|
##
|
|
prometheusRule:
|
|
## @param metrics.prometheusRule.enabled Set this to true to create prometheusRules for Prometheus operator
|
|
##
|
|
enabled: false
|
|
## @param metrics.prometheusRule.additionalLabels Additional labels that can be used so prometheusRules will be discovered by Prometheus
|
|
##
|
|
additionalLabels: {}
|
|
## @param metrics.prometheusRule.namespace namespace where prometheusRules resource should be created
|
|
##
|
|
namespace: ""
|
|
## List of rules, used as template by Helm.
|
|
## @param metrics.prometheusRule.rules List of rules, used as template by Helm.
|
|
## These are just examples rules inspired from https://awesome-prometheus-alerts.grep.to/rules.html
|
|
## rules:
|
|
## - alert: RabbitmqDown
|
|
## expr: rabbitmq_up{service="{{ template "rabbitmq.fullname" . }}"} == 0
|
|
## for: 5m
|
|
## labels:
|
|
## severity: error
|
|
## annotations:
|
|
## summary: Rabbitmq down (instance {{ "{{ $labels.instance }}" }})
|
|
## description: RabbitMQ node down
|
|
## - alert: ClusterDown
|
|
## expr: |
|
|
## sum(rabbitmq_running{service="{{ template "rabbitmq.fullname" . }}"})
|
|
## < {{ .Values.replicaCount }}
|
|
## for: 5m
|
|
## labels:
|
|
## severity: error
|
|
## annotations:
|
|
## summary: Cluster down (instance {{ "{{ $labels.instance }}" }})
|
|
## description: |
|
|
## Less than {{ .Values.replicaCount }} nodes running in RabbitMQ cluster
|
|
## VALUE = {{ "{{ $value }}" }}
|
|
## - alert: ClusterPartition
|
|
## expr: rabbitmq_partitions{service="{{ template "rabbitmq.fullname" . }}"} > 0
|
|
## for: 5m
|
|
## labels:
|
|
## severity: error
|
|
## annotations:
|
|
## summary: Cluster partition (instance {{ "{{ $labels.instance }}" }})
|
|
## description: |
|
|
## Cluster partition
|
|
## VALUE = {{ "{{ $value }}" }}
|
|
## - alert: OutOfMemory
|
|
## expr: |
|
|
## rabbitmq_node_mem_used{service="{{ template "rabbitmq.fullname" . }}"}
|
|
## / rabbitmq_node_mem_limit{service="{{ template "rabbitmq.fullname" . }}"}
|
|
## * 100 > 90
|
|
## for: 5m
|
|
## labels:
|
|
## severity: warning
|
|
## annotations:
|
|
## summary: Out of memory (instance {{ "{{ $labels.instance }}" }})
|
|
## description: |
|
|
## Memory available for RabbmitMQ is low (< 10%)\n VALUE = {{ "{{ $value }}" }}
|
|
## LABELS: {{ "{{ $labels }}" }}
|
|
## - alert: TooManyConnections
|
|
## expr: rabbitmq_connectionsTotal{service="{{ template "rabbitmq.fullname" . }}"} > 1000
|
|
## for: 5m
|
|
## labels:
|
|
## severity: warning
|
|
## annotations:
|
|
## summary: Too many connections (instance {{ "{{ $labels.instance }}" }})
|
|
## description: |
|
|
## RabbitMQ instance has too many connections (> 1000)
|
|
## VALUE = {{ "{{ $value }}" }}\n LABELS: {{ "{{ $labels }}" }}
|
|
##
|
|
rules: []
|
|
|
|
## @section Init Container Parameters
|
|
|
|
## Init Container parameters
|
|
## Change the owner and group of the persistent volume(s) mountpoint(s) to 'runAsUser:fsGroup' on each component
|
|
## values from the securityContext section of the component
|
|
##
|
|
volumePermissions:
|
|
## @param volumePermissions.enabled Enable init container that changes the owner and group of the persistent volume(s) mountpoint to `runAsUser:fsGroup`
|
|
##
|
|
enabled: false
|
|
## @param volumePermissions.image.registry Init container volume-permissions image registry
|
|
## @param volumePermissions.image.repository Init container volume-permissions image repository
|
|
## @param volumePermissions.image.tag Init container volume-permissions image tag
|
|
## @param volumePermissions.image.pullPolicy Init container volume-permissions image pull policy
|
|
## @param volumePermissions.image.pullSecrets Specify docker-registry secret names as an array
|
|
##
|
|
image:
|
|
registry: docker.io
|
|
repository: bitnami/bitnami-shell
|
|
tag: 10-debian-10-r267
|
|
## Specify a imagePullPolicy
|
|
## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent'
|
|
## ref: https://kubernetes.io/docs/user-guide/images/#pre-pulling-images
|
|
##
|
|
pullPolicy: IfNotPresent
|
|
## Optionally specify an array of imagePullSecrets (secrets must be manually created in the namespace)
|
|
## ref: https://kubernetes.io/docs/tasks/configure-pod-container/pull-image-private-registry/
|
|
## Example:
|
|
## pullSecrets:
|
|
## - myRegistryKeySecretName
|
|
##
|
|
pullSecrets: []
|
|
## Init Container resource requests and limits
|
|
## ref: https://kubernetes.io/docs/user-guide/compute-resources/
|
|
## We usually recommend not to specify default resources and to leave this as a conscious
|
|
## choice for the user. This also increases chances charts run on environments with little
|
|
## resources, such as Minikube. If you do want to specify resources, uncomment the following
|
|
## lines, adjust them as necessary, and remove the curly braces after 'resources:'.
|
|
## @param volumePermissions.resources.limits Init container volume-permissions resource limits
|
|
## @param volumePermissions.resources.requests Init container volume-permissions resource requests
|
|
##
|
|
resources:
|
|
## Example:
|
|
## limits:
|
|
## cpu: 100m
|
|
## memory: 128Mi
|
|
limits: {}
|
|
## Examples:
|
|
## requests:
|
|
## cpu: 100m
|
|
## memory: 128Mi
|
|
requests: {}
|