Add simple helm example

This commit is contained in:
Thomas Philipona
2021-03-31 11:52:02 +02:00
parent 2cafd1d082
commit bddc753b6f
11 changed files with 386 additions and 0 deletions

View File

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