add helm chart files

This commit is contained in:
aleksandr.vodyanov
2024-08-19 13:21:47 +03:00
parent 81b64731fc
commit 9dee441084
10 changed files with 419 additions and 0 deletions

View File

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