oecis-charts/charts/pairdrop/templates/tests/test-connection.yaml
Jan-Niklas Weghorn 4c83eb7d60 add pairdrop
2024-04-29 15:19:32 +02:00

16 lines
382 B
YAML

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