Merge pull request #575 from rawmind0/master

Fix rabbitmq-3 network definition and add optional host_label
This commit is contained in:
Raúl Sánchez 2017-08-01 15:31:27 +02:00 committed by GitHub
commit 84ddcb8e18
2 changed files with 56 additions and 2 deletions

View File

@ -0,0 +1,54 @@
version: '2'
services:
rabbitmq:
image: webhostingcoopteam/rabbitmq-conf:0.2.1
labels:
io.rancher.container.hostname_override: container_name
io.rancher.scheduler.affinity:container_label_soft_ne: io.rancher.stack_service.name=$${stack_name}/$${service_name}
io.rancher.sidekicks: rabbitmq-base,rabbitmq-datavolume
{{- if ne .Values.host_label ""}}
io.rancher.scheduler.affinity:host_label: ${host_label}
{{- end}}
volumes_from:
- rabbitmq-datavolume
environment:
- RABBITMQ_NET_TICKTIME=${net_ticktime}
- RABBITMQ_CLUSTER_PARTITION_HANDLING=${cluster_partition_handling}
- CONFD_ARGS=${confd_args}
rabbitmq-datavolume:
network_mode: "none"
labels:
io.rancher.container.hostname_override: container_name
io.rancher.scheduler.affinity:container_label_soft_ne: io.rancher.stack_service.name=$${stack_name}/$${service_name}
{{- if ne .Values.host_label ""}}
io.rancher.scheduler.affinity:host_label: ${host_label}
{{- end}}
io.rancher.container.start_once: true
volumes:
- rabbitconf:/etc/rabbitmq
- rancherbin:/opt/rancher/bin
entrypoint: /bin/true
image: rabbitmq:3.6-management-alpine
rabbitmq-base:
network_mode: "container:rabbitmq"
labels:
io.rancher.container.hostname_override: container_name
io.rancher.scheduler.affinity:container_label_soft_ne: io.rancher.stack_service.name=$${stack_name}/$${service_name}
{{- if ne .Values.host_label ""}}
io.rancher.scheduler.affinity:host_label: ${host_label}
{{- end}}
image: rabbitmq:3.6-management-alpine
restart: always
volumes_from:
- rabbitmq-datavolume
entrypoint:
- /opt/rancher/bin/run.sh
environment:
- RABBITMQ_ERLANG_COOKIE=${erlang_cookie}
volumes:
rancherbin:
driver: ${VOLUME_DRIVER}
per_container: true
rabbitconf:
driver: ${VOLUME_DRIVER}
per_container: true

View File

@ -63,8 +63,8 @@ catalog:
description: | description: |
Host label to use as rabbitmq 'value' tag. Host label to use as rabbitmq 'value' tag.
Example: 'rabbitmq=true' Example: 'rabbitmq=true'
required: true required: false
default: "private=true" default: ""
type: "string" type: "string"
- variable: "initial_data_nodes" - variable: "initial_data_nodes"
type: "int" type: "int"