mirror of
https://github.com/helm/charts.git
synced 2026-08-23 22:37:45 +00:00
updates to support alternate k8s scheduler (#14366)
Signed-off-by: Sathya Balakrishnan <sathya@portworx.com>
This commit is contained in:
committed by
Kubernetes Prow Robot
parent
3b934d8366
commit
a0ccf2b9ca
@@ -1,6 +1,6 @@
|
||||
apiVersion: v1
|
||||
name: rabbitmq
|
||||
version: 5.8.2
|
||||
version: 5.9.0
|
||||
appVersion: 3.7.15
|
||||
description: Open source message broker software that implements the Advanced Message Queuing Protocol (AMQP)
|
||||
keywords:
|
||||
|
||||
@@ -80,6 +80,7 @@ The following table lists the configurable parameters of the RabbitMQ chart and
|
||||
| `service.managerPort` | RabbitMQ Manager port | `15672` |
|
||||
| `persistence.enabled` | Use a PVC to persist data | `true` |
|
||||
| `service.annotations` | service annotations as an array | [] |
|
||||
| `schedulerName` | Name of the k8s service (other than default) | `nil` |
|
||||
| `persistence.storageClass` | Storage class of backing PVC | `nil` (uses alpha storage class annotation) |
|
||||
| `persistence.existingClaim` | RabbitMQ data Persistent Volume existing claim name, evaluated as a template | "" |
|
||||
| `persistence.accessMode` | Use volume as ReadOnly or ReadWrite | `ReadWriteOnce` |
|
||||
|
||||
@@ -34,6 +34,9 @@ spec:
|
||||
{{ toYaml .Values.podAnnotations | indent 8 }}
|
||||
{{- end }}
|
||||
spec:
|
||||
{{- if .Values.schedulerName }}
|
||||
schedulerName: "{{ .Values.schedulerName }}"
|
||||
{{- end }}
|
||||
{{- include "rabbitmq.imagePullSecrets" . | indent 6 }}
|
||||
{{- if .Values.rbacEnabled}}
|
||||
serviceAccountName: {{ template "rabbitmq.fullname" . }}
|
||||
|
||||
@@ -32,6 +32,11 @@ image:
|
||||
# pullSecrets:
|
||||
# - myRegistryKeySecretName
|
||||
|
||||
## Use an alternate scheduler, e.g. "stork".
|
||||
## ref: https://kubernetes.io/docs/tasks/administer-cluster/configure-multiple-schedulers/
|
||||
##
|
||||
# schedulerName:
|
||||
|
||||
## does your cluster have rbac enabled? assume yes by default
|
||||
rbacEnabled: true
|
||||
|
||||
|
||||
@@ -32,6 +32,11 @@ image:
|
||||
# pullSecrets:
|
||||
# - myRegistryKeySecretName
|
||||
|
||||
## Use an alternate scheduler, e.g. "stork".
|
||||
## ref: https://kubernetes.io/docs/tasks/administer-cluster/configure-multiple-schedulers/
|
||||
##
|
||||
# schedulerName:
|
||||
|
||||
## does your cluster have rbac enabled? assume yes by default
|
||||
rbacEnabled: true
|
||||
|
||||
|
||||
Reference in New Issue
Block a user