Files
ArgoCD/peoples/templates/service.yaml
T
2023-03-22 16:08:31 +02:00

16 lines
361 B
YAML

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