summaryrefslogtreecommitdiff
path: root/apps/linkding/templates/service.yaml
blob: 1475b176a91069e98cc1a7b9100a7a82cbddb4fe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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