drone-charts/templates/tests/test-connection.yaml

16 lines
373 B
YAML
Raw Normal View History

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