helm-charts/playmaker/templates/tests/test-connection.yaml
2021-01-17 04:09:41 +03:00

16 lines
393 B
YAML

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