This repository has been archived on 2025-04-14. You can view files and clone it, but cannot push or open issues or pull requests.
drone-charts/templates/tests/test-connection.yaml
2021-07-21 22:17:38 +02:00

16 lines
373 B
YAML

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