helm-charts/grampsweb/templates/tests/test-connection.yaml

16 lines
385 B
YAML
Raw Permalink Normal View History

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