helm-charts/web-static/templates/tests/test-connection.yaml

16 lines
388 B
YAML
Raw Normal View History

2023-07-30 14:36:06 +02:00
apiVersion: v1
kind: Pod
metadata:
name: "{{ include "web-static.fullname" . }}-test-connection"
labels:
{{- include "web-static.labels" . | nindent 4 }}
annotations:
"helm.sh/hook": test
spec:
containers:
- name: wget
image: busybox
command: ['wget']
args: ['{{ include "web-static.fullname" . }}:{{ .Values.service.port }}']
restartPolicy: Never