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.
nubian/templates/service.yaml

16 lines
358 B
YAML
Raw Permalink Normal View History

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