Skip to content
Snippets Groups Projects
Unverified Commit a0b4b0de authored by groundhog2k's avatar groundhog2k Committed by GitHub
Browse files

Updated rabbitmq chart for RabbitMQ 3.8.11 (#203)

* Updated rabbitmq chart for RabbitMQ 3.8.11

* Fixed indentation

* Fixed indentation
parent 7f53fdcb
No related branches found
No related tags found
No related merge requests found
...@@ -7,6 +7,6 @@ type: application ...@@ -7,6 +7,6 @@ type: application
maintainers: maintainers:
- name: groundhog2k - name: groundhog2k
version: 0.2.7 version: 0.2.8
appVersion: "3.8.10" appVersion: "3.8.11"
...@@ -15,6 +15,6 @@ metadata: ...@@ -15,6 +15,6 @@ metadata:
{{- include "rabbitmq.labels" . | nindent 4 }} {{- include "rabbitmq.labels" . | nindent 4 }}
type: Opaque type: Opaque
data: data:
RABBITMQ_ERLANG_COOKIE: {{ (coalesce (.Values.authentication.erlangCookie | default "" | b64enc) $existingErlangCookie (randAlphaNum 32 | b64enc)) | quote }} RABBITMQ_ERLANG_COOKIE: {{ coalesce (.Values.authentication.erlangCookie | default "" | b64enc) $existingErlangCookie (randAlphaNum 32 | b64enc) }}
RABBITMQ_DEFAULT_USER: {{ (coalesce (.Values.authentication.user | default "" | b64enc) $existingUser ("guest" | b64enc)) | quote }} RABBITMQ_DEFAULT_USER: {{ coalesce (.Values.authentication.user | default "" | b64enc) $existingUser ("guest" | b64enc) }}
RABBITMQ_DEFAULT_PASS: {{ (coalesce (.Values.authentication.password | default "" | b64enc) $existingPassword (randAlphaNum 10 | b64enc)) | quote }} RABBITMQ_DEFAULT_PASS: {{ coalesce (.Values.authentication.password | default "" | b64enc) $existingPassword (randAlphaNum 10 | b64enc) }}
...@@ -71,9 +71,12 @@ ingress: ...@@ -71,9 +71,12 @@ ingress:
- host: - host:
paths: paths:
- / - /
# tls:
# - hosts: ## TLS settings for hosts
# - rabbitmq.local tls: []
# - secretName: chart-example-tls
# hosts:
# - chart-example.local
## Resource limits and requests ## Resource limits and requests
resources: {} resources: {}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment