161170bf96
With 1.6, init containers are officially part of the kubernetes API. This changes the format of the helm template for the entrypoint container from json to yaml, and updates the charts accordingly. Co-Authored-By: Pete Birley <pete@port.direct> Change-Id: I569566ce4b031d107af2d38483040a26210bec45
123 lines
4.3 KiB
YAML
123 lines
4.3 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.
|
|
|
|
{{- $envAll := . }}
|
|
{{- $dependencies := .Values.dependencies }}
|
|
kind: Deployment
|
|
apiVersion: apps/v1beta1
|
|
metadata:
|
|
name: rabbitmq
|
|
spec:
|
|
replicas: {{ .Values.replicas }}
|
|
revisionHistoryLimit: {{ .Values.upgrades.revision_history }}
|
|
strategy:
|
|
type: {{ .Values.upgrades.pod_replacement_strategy }}
|
|
{{ if eq .Values.upgrades.pod_replacement_strategy "RollingUpdate" }}
|
|
rollingUpdate:
|
|
maxUnavailable: {{ .Values.upgrades.rolling_update.max_unavailable }}
|
|
maxSurge: {{ .Values.upgrades.rolling_update.max_surge }}
|
|
{{ end }}
|
|
template:
|
|
metadata:
|
|
labels:
|
|
app: rabbitmq
|
|
annotations:
|
|
configmap-bin-hash: {{ tuple "configmap-bin.yaml" . | include "helm-toolkit.utils.hash" }}
|
|
configmap-etc-hash: {{ tuple "configmap-etc.yaml" . | include "helm-toolkit.utils.hash" }}
|
|
# 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
|
|
initContainers:
|
|
{{ tuple $envAll $dependencies "[]" | include "helm-toolkit.snippets.kubernetes_entrypoint_init_container" | indent 9 }}
|
|
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
|
|
env:
|
|
- name: RABBITMQ_POD_IP
|
|
valueFrom:
|
|
fieldRef:
|
|
fieldPath: status.podIP
|
|
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
|
|
readOnly: true
|
|
- name: rabbitmq-etc
|
|
mountPath: /etc/rabbitmq/erlang.cookie
|
|
subPath: erlang.cookie
|
|
readOnly: true
|
|
- name: rabbitmq-etc
|
|
mountPath: /etc/rabbitmq/rabbitmq-env.conf
|
|
subPath: rabbitmq-env.conf
|
|
readOnly: true
|
|
- name: rabbitmq-etc
|
|
mountPath: /etc/rabbitmq/rabbitmq.config
|
|
subPath: rabbitmq.config
|
|
readOnly: true
|