Files
turingpi/my-actual-server/templates/tests/test-connection.yaml
T
2024-09-10 18:29:25 +02:00

16 lines
406 B
YAML

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