Valley Path chart, first try

This commit is contained in:
Hendrik Leidinger 2022-01-12 19:36:42 +01:00
parent bd41dff84e
commit 07c1849b4a
28 changed files with 291 additions and 521 deletions

View file

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