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

16 lines
379 B
YAML
Raw Normal View History

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