This repository has been archived on 2024-08-10. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
khufu/templates/service.yaml
dunemask 39a882cb18 [CHORE] Migrate to Helm (#4)
Co-authored-by: dunemask <dunemask@gmail.com>
Reviewed-on: https://gitea.dunemask.net/elysium/khufu/pulls/4
2023-08-24 01:02:27 +00:00

15 lines
355 B
YAML

apiVersion: v1
kind: Service
metadata:
name: {{ include "khufu.fullname" . }}
labels:
{{- include "khufu.labels" . | nindent 4 }}
spec:
type: {{ .Values.service.type }}
ports:
- port: {{ .Values.service.port }}
targetPort: http
protocol: TCP
name: http
selector:
{{- include "khufu.selectorLabels" . | nindent 4 }}