Files
turingpi/custom_helm_charts/my-actual-server/templates/tests/test-connection.yaml
T
2026-01-10 16:47:21 +01: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