blob: ff40a33195406e0d66267fb89e383fba8faccfe9 [file] [log] [blame]
Mohammed Naser9ad0d462023-01-15 20:36:37 -05001CHART NAME: {{ .Chart.Name }}
2CHART VERSION: {{ .Chart.Version }}
3APP VERSION: {{ .Chart.AppVersion }}
4
5** Please be patient while the chart is being deployed **
6
7Watch the RabbitMQ Cluster Operator and RabbitMQ Messaging Topology Operator Deployment status using the command:
8
9 kubectl get deploy -w --namespace {{ include "common.names.namespace" . }} -l app.kubernetes.io/name={{ include "common.names.name" . }},app.kubernetes.io/instance={{ .Release.Name }}
10
Mohammed Naser65cda132024-05-02 14:34:08 -040011{{- if .Values.clusterOperator.rbac.create }}
12{{- if .Values.clusterOperator.watchAllNamespaces }}
13WARNING: RabbitMQ Cluster Operator can access all secrets in the cluster. This could pose a security risk if the application gets compromised.
14
15You can limit allowed namespaces by setting clusterOperator.watchAllNamespaces = false and configuring clusterOperator.watchNamespaces
16{{- else }}
17
18RabbitMQ Cluster Operator can ONLY access resources in the following namespaces:
19{{ $namespaces := .Values.clusterOperator.watchAllNamespaces | default (list (include "common.names.namespace" .)) }}
20{{- range $namespace := $namespaces }}
21 - {{ $namespace }}
22{{- end }}
23
24RabbitMQ Cluster Operator won't be able to access resources in other namespaces. You can configure this behavior by setting clusterOperator.watchNamespaces
25
26{{- end }}
27{{- end }}
28
29{{- if .Values.msgTopologyOperator.rbac.create }}
30{{- if .Values.msgTopologyOperator.watchAllNamespaces }}
31WARNING: RabbitMQ Messaging Topology Operator can access all secrets in the cluster. This could pose a security risk if the application gets compromised.
32
33You can limit allowed namespaces by setting msgTopologyOperator.watchAllNamespaces = false and configuring msgTopologyOperator.watchNamespaces
34{{- else }}
35
36RabbitMQ Messaging Topology Operator can ONLY access resources in the following namespaces:
37{{ $namespaces := .Values.msgTopologyOperator.watchAllNamespaces | default (list (include "common.names.namespace" .)) }}
38{{- range $namespace := $namespaces }}
39 - {{ $namespace }}
40{{- end }}
41
42RabbitMQ Messaging Topology Operator won't be able to access resources in other namespaces. You can configure this behavior by setting msgTopologyOperator.watchNamespaces
43
44{{- end }}
45{{- end }}
46
Mohammed Naser9ad0d462023-01-15 20:36:37 -050047{{ include "common.warnings.rollingTag" .Values.clusterOperator.image }}
48{{ include "common.warnings.rollingTag" .Values.msgTopologyOperator.image }}
49{{ include "common.warnings.rollingTag" .Values.credentialUpdaterImage }}
50{{ include "common.warnings.rollingTag" .Values.rabbitmqImage }}
Mohammed Naser65cda132024-05-02 14:34:08 -040051{{- include "common.warnings.resources" (dict "sections" (list "clusterOperator" "msgTopologyOperator") "context" $) }}
Mohammed Naser7d1623e2024-06-17 09:12:39 -040052{{- include "common.warnings.modifiedImages" (dict "images" (list .Values.rabbitmqImage .Values.credentialUpdaterImage .Values.clusterOperator.image .Values.msgTopologyOperator.image) "context" $) }}