openstack-helm/rabbitmq/templates/configmap-etc.yaml
Tomasz Paszkowski e3f1389f60 Add rabbitmq deployment with HA. (#123)
This works is based on http://github.com/openstack-fuel-ccp-rabbitmq and it mostly adjusts this solution
to a helm based deployment.
2017-02-17 10:49:32 -08:00

19 lines
582 B
YAML

apiVersion: v1
kind: ConfigMap
metadata:
name: rabbitmq-etc
labels:
system: openstack
type: configuration
component: messaging
data:
enabled_plugins: |
{{ tuple "etc/_enabled_plugins.tpl" . | include "helm-toolkit.template" | indent 4 }}
erlang.cookie: |
{{ tuple "etc/_erlang.cookie.tpl" . | include "helm-toolkit.template" | indent 4 }}
rabbitmq-env.conf: |
{{ tuple "etc/_rabbitmq-env.conf.tpl" . | include "helm-toolkit.template" | indent 4 }}
rabbitmq.config: |
{{ tuple "etc/_rabbitmq.config.tpl" . | include "helm-toolkit.template" | indent 4 }}