Started creating chart

This commit is contained in:
2023-03-18 23:16:04 +00:00
parent 7b0c0a0950
commit da2afcd24b
20 changed files with 723 additions and 152 deletions

View File

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