charts/test-chart-1/templates/service.yaml

16 lines
376 B
YAML
Raw Permalink Normal View History

2024-09-20 16:32:44 -04:00
apiVersion: v1
kind: Service
metadata:
name: {{ include "test-chart-1.fullname" . }}
labels:
{{- include "test-chart-1.labels" . | nindent 4 }}
spec:
type: {{ .Values.service.type }}
ports:
- port: {{ .Values.service.port }}
targetPort: http
protocol: TCP
name: http
selector:
{{- include "test-chart-1.selectorLabels" . | nindent 4 }}