
Implements: blueprint rabbitmq-dns-discovery Some useful things to note: 1. This uses a StatefulSet instead of a Deployment. The reason for this is that when RabbitMQ uses DNS for peer discovery, the first thing it does when trying to join a node is attempt a reverse-dns lookup. This reverse lookup works when using a StatefulSet, but not a Deployment. 2. The RabbitMQ configuration was updated to use the new sysctl-style format. It seems that the new format is required to configure the new autoclustering features. Additionally, I found that this generate much clearer error messages than the straight erlang format. 3. I removed the `is-node-properly-clustered` test in the liveness and readiness probes. This probe isn't directly supported in 3.7.0, and it wasn't clear that a clustering check was appropriate for each node. Change-Id: Ieefbb2205bd77fbac04abcd051fb06fce62e8d97
101 lines
3.4 KiB
YAML
101 lines
3.4 KiB
YAML
# Copyright 2017 The Openstack-Helm Authors.
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
|
|
kind: StatefulSet
|
|
apiVersion: apps/v1beta1
|
|
metadata:
|
|
name: rabbitmq
|
|
spec:
|
|
replicas: {{ .Values.replicas }}
|
|
serviceName: rabbitmq-discovery
|
|
template:
|
|
metadata:
|
|
labels:
|
|
app: rabbitmq
|
|
annotations:
|
|
# TODO: this needs to be moved to common.
|
|
scheduler.alpha.kubernetes.io/affinity: >
|
|
{
|
|
"podAntiAffinity": {
|
|
"preferredDuringSchedulingIgnoredDuringExecution": [{
|
|
"labelSelector": {
|
|
"matchExpressions": [{
|
|
"key": "app",
|
|
"operator": "In",
|
|
"values":["rabbitmq"]
|
|
}]
|
|
},
|
|
"topologyKey": "kubernetes.io/hostname",
|
|
"weight": 10
|
|
}]
|
|
}
|
|
}
|
|
spec:
|
|
nodeSelector:
|
|
{{ .Values.labels.node_selector_key }}: {{ .Values.labels.node_selector_value }}
|
|
volumes:
|
|
- name: rabbitmq-emptydir
|
|
emptyDir: {}
|
|
- name: rabbitmq-bin
|
|
configMap:
|
|
name: rabbitmq-bin
|
|
- name: rabbitmq-etc
|
|
configMap:
|
|
name: rabbitmq-etc
|
|
containers:
|
|
- name: rabbitmq
|
|
image: {{ .Values.images.rabbitmq }}
|
|
{{- if .Values.resources.enabled }}
|
|
resources:
|
|
limits:
|
|
cpu: {{ .Values.resources.api.limits.cpu | quote }}
|
|
memory: {{ .Values.resources.api.limits.memory | quote }}
|
|
requests:
|
|
cpu: {{ .Values.resources.api.requests.cpu | quote }}
|
|
memory: {{ .Values.resources.api.requests.memory | quote }}
|
|
{{- end }}
|
|
command:
|
|
- bash
|
|
- /scripts/start.sh
|
|
readinessProbe:
|
|
timeoutSeconds: {{ .Values.probes_timeout }}
|
|
exec:
|
|
command:
|
|
- bash
|
|
- /scripts/rabbitmq-readiness.sh
|
|
livenessProbe:
|
|
initialDelaySeconds: {{ .Values.probes_delay }}
|
|
timeoutSeconds: {{ .Values.probes_timeout }}
|
|
exec:
|
|
command:
|
|
- bash
|
|
- /scripts/rabbitmq-liveness.sh
|
|
volumeMounts:
|
|
- name: rabbitmq-emptydir
|
|
mountPath: /var/lib/rabbitmq
|
|
- name: rabbitmq-bin
|
|
mountPath: /scripts
|
|
- name: rabbitmq-etc
|
|
mountPath: /etc/rabbitmq/enabled_plugins
|
|
subPath: enabled_plugins
|
|
- name: rabbitmq-etc
|
|
mountPath: /etc/rabbitmq/erlang.cookie
|
|
subPath: erlang.cookie
|
|
- name: rabbitmq-etc
|
|
mountPath: /etc/rabbitmq/rabbitmq-env.conf
|
|
subPath: rabbitmq-env.conf
|
|
- name: rabbitmq-etc
|
|
mountPath: /etc/rabbitmq/rabbitmq.conf
|
|
subPath: rabbitmq.conf
|