kubeasz/manifests/redis-cluster/redis-ha/templates/tests/test-redis-ha-configmap.yaml

37 lines
841 B
YAML
Raw Normal View History

2019-01-30 21:23:17 +08:00
apiVersion: v1
kind: Pod
metadata:
name: {{ template "redis-ha.fullname" . }}-configmap-test
labels:
{{ include "labels.standard" . | indent 4 }}
annotations:
"helm.sh/hook": test-success
spec:
containers:
- name: check-init
image: koalaman/shellcheck:v0.5.0
args:
- --shell=sh
- /readonly-config/init.sh
volumeMounts:
- name: config
mountPath: /readonly-config
readOnly: true
- name: check-probes
image: koalaman/shellcheck:v0.5.0
args:
- --shell=sh
- /probes/check-quorum.sh
volumeMounts:
- name: probes
mountPath: /probes
readOnly: true
volumes:
- name: config
configMap:
name: {{ template "redis-ha.fullname" . }}-configmap
- name: probes
configMap:
name: {{ template "redis-ha.fullname" . }}-probes
restartPolicy: Never