Files
charts/tatort/templates/tests/test-connection.yaml
2025-03-04 11:36:36 +01:00

16 lines
376 B
YAML

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