This commit is contained in:
Smigz 2024-09-20 16:32:44 -04:00
parent 5a396346d7
commit 3d5b78cc74
11 changed files with 440 additions and 0 deletions

View file

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