my-apps/charts/wallos/templates/tests/test-connection.yaml
2025-12-07 04:28:21 +02:00

16 lines
396 B
YAML

apiVersion: v1
kind: Pod
metadata:
name: "{{ include "wallos.fullname" . }}-test-connection"
labels:
{{- include "wallos.labels" . | nindent 4 }}
annotations:
"helm.sh/hook": test
spec:
containers:
- name: test-pod
image: quay.io/curl/curl
command: ['curl']
args: ['-L', '{{ include "wallos.fullname" . }}:{{ .Values.service.port }}']
restartPolicy: Never