16 lines
391 B
YAML
16 lines
391 B
YAML
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
name: {{ include "<CHARTNAME>.fullname" . }}
|
|
labels:
|
|
{{- include "<CHARTNAME>.labels" . | nindent 4 }}
|
|
spec:
|
|
type: {{ .Values.service.type }}
|
|
ports:
|
|
- port: {{ .Values.service.port }}
|
|
targetPort: {{ .Values.app.port }}
|
|
protocol: TCP
|
|
name: http
|
|
selector:
|
|
{{- include "<CHARTNAME>.selectorLabels" . | nindent 4 }}
|