link-stack/apps/leafcutter/charts/templates/tests/test-connection.yaml

16 lines
376 B
YAML
Raw Normal View History

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