initial helm chart

This commit is contained in:
René Zubcevic
2021-02-14 08:24:19 +01:00
parent 705ec85f35
commit 3b55ef5ffe
12 changed files with 402 additions and 0 deletions

View File

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