helm-chart-genes/charts/limesurvey-martial-ingress-v9/templates/tests/test-connection.yaml

16 lines
361 B
YAML
Raw Normal View History

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