Started K8s helm template creation

This commit is contained in:
frikky
2021-09-21 01:06:27 +02:00
parent e0aa368b24
commit 2ea4e8d1c3
18 changed files with 694 additions and 10 deletions
@@ -0,0 +1,15 @@
apiVersion: v1
kind: Pod
metadata:
name: "{{ include "shuffle.fullname" . }}-test-connection"
labels:
{{- include "shuffle.labels" . | nindent 4 }}
annotations:
"helm.sh/hook": test
spec:
containers:
- name: wget
image: busybox
command: ['wget']
args: ['{{ include "shuffle.fullname" . }}:{{ .Values.service.port }}']
restartPolicy: Never