feat: version bump for RabbitMQ, within the MQ module, secret handling changes

This commit is contained in:
Stefan Reimer 2022-11-09 11:40:46 +01:00
parent 5492e10a08
commit 6891ae41a7
3 changed files with 16 additions and 5 deletions

View File

@ -2,7 +2,7 @@ apiVersion: v2
name: kubezero-mq name: kubezero-mq
description: KubeZero umbrella chart for MQ systems like NATS, RabbitMQ description: KubeZero umbrella chart for MQ systems like NATS, RabbitMQ
type: application type: application
version: 0.2.3 version: 0.3.0
home: https://kubezero.com home: https://kubezero.com
icon: https://cdn.zero-downtime.net/assets/kubezero/logo-small-64.png icon: https://cdn.zero-downtime.net/assets/kubezero/logo-small-64.png
keywords: keywords:
@ -14,14 +14,14 @@ maintainers:
email: stefan@zero-downtime.net email: stefan@zero-downtime.net
dependencies: dependencies:
- name: kubezero-lib - name: kubezero-lib
version: ">= 0.1.3" version: ">= 0.1.5"
repository: https://cdn.zero-downtime.net/charts/ repository: https://cdn.zero-downtime.net/charts/
- name: nats - name: nats
version: 0.8.4 version: 0.8.4
#repository: https://nats-io.github.io/k8s/helm/charts/ #repository: https://nats-io.github.io/k8s/helm/charts/
condition: nats.enabled condition: nats.enabled
- name: rabbitmq - name: rabbitmq
version: 9.0.3 version: 11.1.1
repository: https://charts.bitnami.com/bitnami repository: https://charts.bitnami.com/bitnami
condition: rabbitmq.enabled condition: rabbitmq.enabled
kubeVersion: ">= 1.20.0" kubeVersion: ">= 1.20.0"

View File

@ -0,0 +1,11 @@
apiVersion: v1
kind: Secret
type: Opaque
metadata:
name: rabbitmq
namespace: {{ .Release.Namespace }}
labels:
{{- include "kubezero-lib.labels" . | nindent 4 }}
data:
rabbitmq-erlang-cookie: ""
rabbitmq-password: ""

View File

@ -38,8 +38,8 @@ rabbitmq:
gateway: istio-ingress/private-ingressgateway gateway: istio-ingress/private-ingressgateway
auth: auth:
password: "supersecret" existingPasswordSecret: rabbitmq
erlangCookie: "randomlongerlangcookie" existingErlangSecret: rabbitmq
tls: tls:
enabled: false enabled: false
failIfNoPeerCert: false failIfNoPeerCert: false