summaryrefslogtreecommitdiff
path: root/apps/heimdall/templates/service.yaml
diff options
context:
space:
mode:
authorR-man3000 <rasmus.luha@gmail.com>2026-05-31 13:53:25 +0300
committerR-man3000 <rasmus.luha@gmail.com>2026-05-31 13:53:25 +0300
commit46beed24543994a465e5449acc1bb987e5368441 (patch)
tree9f7a3be1065f5e39069e6f8fa8f942027340ce47 /apps/heimdall/templates/service.yaml
parent974d4457148e9a9ff3a0231eece663d04faaf16d (diff)
move Heimdall deployment to helm chart
Diffstat (limited to 'apps/heimdall/templates/service.yaml')
-rw-r--r--apps/heimdall/templates/service.yaml15
1 files changed, 15 insertions, 0 deletions
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