charts/embyserver/templates/tests/test-connection.yaml
Jon Ervine fa8b54a8f4 rename
2021-04-08 22:48:11 +08:00

16 lines
374 B
YAML

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