Skip to content

Commit

Permalink
correctly disable by default all the things that are based on rabbitmq
Browse files Browse the repository at this point in the history
  • Loading branch information
edevosc2c committed Nov 6, 2023
1 parent bf93a8d commit ab81bc8
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,5 @@ dependencies:
- name: rabbitmq
version: ~12.1.4
repository: "https://charts.bitnami.com/bitnami/"
condition: rabbitmq.builtin, rabbitmq.enabled
condition: rabbitmq.enabled, rabbitmq.builtin
alias: rabbitmq
2 changes: 1 addition & 1 deletion templates/console/console-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ spec:
{{- include "georchestra.common-envs" . | nindent 10 }}
{{- include "georchestra.ldap-envs" . | nindent 10 }}
{{- include "georchestra.database-georchestra-envs" . | nindent 10 }}
{{- if $rabbitmq.enabled -}}
{{- if .Values.rabbitmq.enabled -}}
{{- include "georchestra.rabbitmq-georchestra-envs" . | nindent 10 }}
{{- end }}
{{- if $webapp.extra_environment }}
Expand Down
2 changes: 1 addition & 1 deletion templates/gateway/gateway-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ spec:
{{- include "georchestra.common-envs" . | nindent 10 }}
{{- include "georchestra.ldap-envs" . | nindent 10 }}
{{- include "georchestra.database-georchestra-envs" . | nindent 10 }}
{{- if $rabbitmq.enabled -}}
{{- if .Values.rabbitmq.enabled -}}
{{- include "georchestra.rabbitmq-georchestra-envs" . | nindent 10 }}
{{- end }}
{{- if $webapp.extra_environment }}
Expand Down

0 comments on commit ab81bc8

Please sign in to comment.