Mohammed Naser | 9ad0d46 | 2023-01-15 20:36:37 -0500 | [diff] [blame] | 1 | CHART NAME: {{ .Chart.Name }} |
| 2 | CHART VERSION: {{ .Chart.Version }} |
| 3 | APP VERSION: {{ .Chart.AppVersion }} |
| 4 | |
| 5 | ** Please be patient while the chart is being deployed ** |
| 6 | |
| 7 | Watch 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 Naser | 65cda13 | 2024-05-02 14:34:08 -0400 | [diff] [blame] | 11 | {{- if .Values.clusterOperator.rbac.create }} |
| 12 | {{- if .Values.clusterOperator.watchAllNamespaces }} |
| 13 | WARNING: RabbitMQ Cluster Operator can access all secrets in the cluster. This could pose a security risk if the application gets compromised. |
| 14 | |
| 15 | You can limit allowed namespaces by setting clusterOperator.watchAllNamespaces = false and configuring clusterOperator.watchNamespaces |
| 16 | {{- else }} |
| 17 | |
| 18 | RabbitMQ 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 | |
| 24 | RabbitMQ 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 }} |
| 31 | WARNING: RabbitMQ Messaging Topology Operator can access all secrets in the cluster. This could pose a security risk if the application gets compromised. |
| 32 | |
| 33 | You can limit allowed namespaces by setting msgTopologyOperator.watchAllNamespaces = false and configuring msgTopologyOperator.watchNamespaces |
| 34 | {{- else }} |
| 35 | |
| 36 | RabbitMQ 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 | |
| 42 | RabbitMQ 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 Naser | 9ad0d46 | 2023-01-15 20:36:37 -0500 | [diff] [blame] | 47 | {{ 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 Naser | 65cda13 | 2024-05-02 14:34:08 -0400 | [diff] [blame] | 51 | {{- include "common.warnings.resources" (dict "sections" (list "clusterOperator" "msgTopologyOperator") "context" $) }} |
Mohammed Naser | 7d1623e | 2024-06-17 09:12:39 -0400 | [diff] [blame] | 52 | {{- include "common.warnings.modifiedImages" (dict "images" (list .Values.rabbitmqImage .Values.credentialUpdaterImage .Values.clusterOperator.image .Values.msgTopologyOperator.image) "context" $) }} |