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
+15
View File
@@ -0,0 +1,15 @@
apiVersion: v1
kind: Service
metadata:
name: {{ include "my-actual-server.fullname" . }}
labels:
{{- include "my-actual-server.labels" . | nindent 4 }}
spec:
type: {{ .Values.service.type }}
ports:
- port: {{ .Values.service.port }}
targetPort: 5006
protocol: TCP
name: http
selector:
{{- include "my-actual-server.selectorLabels" . | nindent 4 }}