e3f1389f60
This works is based on http://github.com/openstack-fuel-ccp-rabbitmq and it mostly adjusts this solution to a helm based deployment.
19 lines
582 B
YAML
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 }}
|
|
|