Files
BellScheduler/charts/templates/tests/test-connection.yaml
William Peebles 64fb6351fe
Some checks failed
continuous-integration/drone/push Build is failing
create helm chart
2022-11-19 21:39:05 -05:00

16 lines
412 B
YAML

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