feat(helm): add kubernetes helm chart

This commit is contained in:
2022-11-14 21:49:32 +00:00
parent c10da646e0
commit 51acb32c8a
12 changed files with 422 additions and 1 deletions

View File

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