add actual server (budget app)

This commit is contained in:
gilgamezh
2024-09-10 18:29:25 +02:00
parent 4cae5ac7f3
commit ea12943330
14 changed files with 502 additions and 0 deletions
@@ -0,0 +1,15 @@
apiVersion: v1
kind: Pod
metadata:
name: "{{ include "my-actual-server.fullname" . }}-test-connection"
labels:
{{- include "my-actual-server.labels" . | nindent 4 }}
annotations:
"helm.sh/hook": test
spec:
containers:
- name: wget
image: busybox
command: ['wget']
args: ['{{ include "my-actual-server.fullname" . }}:{{ .Values.service.port }}']
restartPolicy: Never