116931bb51
* Rename common chart to helm-toolkit * Update useage of helpers to include reference to chart they come from. * Update helm-toolkit function naming Also catches several functions missed in previous PS * Update remaining requirements.yaml to use helm-toolbox * Dep Check container fix for common -> helm-toolbox renaming
61 lines
2.1 KiB
YAML
61 lines
2.1 KiB
YAML
kind: Deployment
|
|
apiVersion: extensions/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.hash" }}
|
|
spec:
|
|
nodeSelector:
|
|
{{ .Values.labels.node_selector_key }}: {{ .Values.labels.node_selector_value }}
|
|
volumes:
|
|
- name: rabbitmq-emptydir
|
|
emptyDir: {}
|
|
- name: rabbitmq-bin
|
|
configMap:
|
|
name: rabbitmq-bin
|
|
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
|
|
- /tmp/start_rabbitmq.sh
|
|
livenessProbe:
|
|
tcpSocket:
|
|
port: {{.Values.network.port.public}}
|
|
initialDelaySeconds: 60
|
|
timeoutSeconds: 5
|
|
ports:
|
|
- name: rabbitmq
|
|
containerPort: {{.Values.network.port.public}}
|
|
- name: management
|
|
containerPort: {{.Values.network.port.management}}
|
|
volumeMounts:
|
|
- name: rabbitmq-emptydir
|
|
mountPath: /var/lib/rabbitmq
|
|
- name: rabbitmq-bin
|
|
mountPath: /tmp/start_rabbitmq.sh
|
|
subPath: start_rabbitmq.sh
|