Add helm chart

This commit is contained in:
2024-09-06 10:00:42 +02:00
parent 6dbde7f74f
commit bc9b8a6116
11 changed files with 424 additions and 0 deletions

View File

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