Add apps of apps helm chart

This commit is contained in:
Ruben Hensen
2024-09-05 23:18:03 +02:00
parent 21ea1716ad
commit d36e19cab8
12 changed files with 458 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
apiVersion: v1
kind: Pod
metadata:
name: "{{ include "apps.fullname" . }}-test-connection"
labels:
{{- include "apps.labels" . | nindent 4 }}
annotations:
"helm.sh/hook": test
spec:
containers:
- name: wget
image: busybox
command: ['wget']
args: ['{{ include "apps.fullname" . }}:{{ .Values.service.port }}']
restartPolicy: Never