personal-charts/charts/vp-web/1.0.0/templates/tests/test-connection.yaml
2022-01-12 19:36:42 +01:00

15 lines
376 B
YAML

apiVersion: v1
kind: Pod
metadata:
name: "{{ include "vp-web.fullname" . }}-test-connection"
labels:
{{- include "vp-web.labels" . | nindent 4 }}
annotations:
"helm.sh/hook": test
spec:
containers:
- name: wget
image: busybox
command: ['wget']
args: ['{{ include "vp-web.fullname" . }}:{{ .Values.service.port }}']
restartPolicy: Never