add helmchart
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2022-02-13 22:55:18 +01:00
parent 58a7ecc7d8
commit 24d0e0e1b6
11 changed files with 405 additions and 0 deletions

View File

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