summaryrefslogtreecommitdiff
path: root/apps/linkding/templates/service.yaml
diff options
context:
space:
mode:
authorR-man3000 <rasmus.luha@gmail.com>2026-05-31 21:50:53 +0300
committerR-man3000 <rasmus.luha@gmail.com>2026-05-31 21:50:53 +0300
commita1bc8103d66a7487d64a1e9abd2e1cf4b57b5cac (patch)
tree791522af2ce1d0b6dffbba2b40cdaa5202ff4fe3 /apps/linkding/templates/service.yaml
parent46beed24543994a465e5449acc1bb987e5368441 (diff)
add linkding app
Diffstat (limited to 'apps/linkding/templates/service.yaml')
-rw-r--r--apps/linkding/templates/service.yaml15
1 files changed, 15 insertions, 0 deletions
diff --git a/apps/linkding/templates/service.yaml b/apps/linkding/templates/service.yaml
new file mode 100644
index 0000000..1475b17
--- /dev/null
+++ b/apps/linkding/templates/service.yaml
@@ -0,0 +1,15 @@
+apiVersion: v1
+kind: Service
+metadata:
+ name: {{ include "linkding.name" . }}-service
+ namespace: {{ .Release.Namespace }}
+ labels:
+ {{- include "linkding.labels" . | nindent 4 }}
+spec:
+ type: {{ .Values.service.type }}
+ selector:
+ {{- include "linkding.selectorLabels" . | nindent 4 }}
+ ports:
+ - protocol: TCP
+ port: {{ .Values.service.port }}
+ targetPort: 9090