bazaar/helm/templates/tests/test-connection.yaml

16 lines
376 B
YAML
Raw Normal View History

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