Initial Commit

This commit is contained in:
2021-07-21 22:17:38 +02:00
commit 4a67e243d2
12 changed files with 852 additions and 0 deletions

View File

@ -0,0 +1,15 @@
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