From 46beed24543994a465e5449acc1bb987e5368441 Mon Sep 17 00:00:00 2001 From: R-man3000 Date: Sun, 31 May 2026 13:53:25 +0300 Subject: move Heimdall deployment to helm chart --- apps/heimdall/templates/service.yaml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 apps/heimdall/templates/service.yaml (limited to 'apps/heimdall/templates/service.yaml') diff --git a/apps/heimdall/templates/service.yaml b/apps/heimdall/templates/service.yaml new file mode 100644 index 0000000..7743097 --- /dev/null +++ b/apps/heimdall/templates/service.yaml @@ -0,0 +1,15 @@ +apiVersion: v1 +kind: Service +metadata: + name: {{ include "heimdall.name" . }}-service + namespace: {{ .Release.Namespace }} + labels: + {{- include "heimdall.labels" . | nindent 4 }} +spec: + type: {{ .Values.service.type }} + selector: + {{- include "heimdall.selectorLabels" . | nindent 4 }} + ports: + - protocol: TCP + port: {{ .Values.service.port }} + targetPort: 80 -- cgit v1.2.3