Skip to content

Commit

Permalink
Disable (broken) RabbitMQ in Demo
Browse files Browse the repository at this point in the history
  • Loading branch information
strangepleasures committed Jul 22, 2020
1 parent 9897893 commit 284467f
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
2 changes: 2 additions & 0 deletions .travis/demo-values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@ keycloak:
postgresPassword: "mf5-Y5Q5E5_P33eB"

rabbitmq:
enabled: false
expose: false
rabbitmq:
password: "gtzb28355LFqxbar"
erlangCookie: "fLbZs6ncGzp9Q2R35V3zv9uQyDEjgyDy"
Expand Down
4 changes: 2 additions & 2 deletions charts/hyperspace/templates/projects/pluto/configmap.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -60,8 +60,8 @@ data:
url: {{ .Values.pluto.backends.frontend | default (printf "http://%s-frontend.%s.svc.cluster.local" .Release.Name .Release.Namespace)}}
rabbitmq:
enabled: true
required: true
enabled: {{ .Values.rabbitmq.enabled }}
required: {{ .Values.rabbitmq.enabled }}
host: {{ template "rabbitmq.host" . }}
username: {{ .Values.rabbitmq.user.username }}
password: {{ .Values.rabbitmq.user.password }}
2 changes: 2 additions & 0 deletions charts/hyperspace/templates/projects/portal/configmap.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,8 @@ data:
realm: {{ .Values.hyperspace.keycloak.realm }}
clientSecret: {{ .Values.hyperspace.keycloak.clientSecret }}
rabbitmq:
enabled: {{ .Values.rabbitmq.enabled }}
required: {{ .Values.rabbitmq.enabled }}
host: {{ template "rabbitmq.host" . }}
username: {{ .Values.rabbitmq.rabbitmq.username }}
password: {{ .Values.rabbitmq.rabbitmq.password }}
Expand Down

0 comments on commit 284467f

Please sign in to comment.