1
0
Fork 1
mirror of https://gitlab.com/mangadex-pub/mangadex_at_home.git synced 2024-01-19 02:48:37 +00:00
mangadex_at_home/chart/mangadexathome/templates/tests/test-connection.yaml
2021-02-21 15:10:40 +02:00

16 lines
400 B
YAML

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