helm-chart-genes/charts/limesurvey-user-copy/templates/tests/test-connection.yaml

16 lines
361 B
YAML
Raw Permalink Normal View History

2024-10-09 14:38:23 +02: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