diff options
Diffstat (limited to 'charts/recluse/templates/service.yaml')
| -rw-r--r-- | charts/recluse/templates/service.yaml | 19 | +19 −0 |
1 files changed, 19 insertions, 0 deletions
diff --git a/charts/recluse/templates/service.yaml b/charts/recluse/templates/service.yaml new file mode 100644 --- /dev/null +++ b/charts/recluse/templates/service.yaml @@ -0,0 +1,19 @@ +# SPDX-FileCopyrightText: 2026 Nikolay Govorov +# SPDX-License-Identifier: AGPL-3.0-or-later + +apiVersion: v1 +kind: Service +metadata: + name: {{ include "recluse.fullname" . }} + labels: + {{- include "recluse.labels" . | nindent 4 }} +spec: + selector: + {{- include "recluse.selectorLabels" . | nindent 4 }} + ports: + - name: http + port: {{ .Values.service.port }} + targetPort: http + protocol: TCP + +# vim: set filetype=helm: |
