charts/charts-wip/radosgw/templates/tests/test-connection.yaml
2019-07-06 23:17:57 +02:00

15 lines
382 B
YAML

apiVersion: v1
kind: Pod
metadata:
name: "{{ include "radosgw.fullname" . }}-test-connection"
labels:
{{ include "radosgw.labels" . | indent 4 }}
annotations:
"helm.sh/hook": test-success
spec:
containers:
- name: wget
image: busybox
command: ['wget']
args: ['{{ include "radosgw.fullname" . }}:{{ .Values.service.port }}']
restartPolicy: Never