oecis-charts/charts/pairdrop/templates/tests/test-connection.yaml

16 lines
382 B
YAML
Raw Permalink Normal View History

2024-04-29 14:50:29 +02:00
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