mirror of https://github.com/helm/helm
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
520 B
19 lines
520 B
# This is a service gateway to the replica set created by the deployment.
|
|
# Take a look at the deployment.yaml for general notes about this chart.
|
|
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
name: {{template "fullname" .}}
|
|
labels:
|
|
heritage: {{ .Release.Service | quote }}
|
|
release: {{ .Release.Name | quote }}
|
|
chart: "{{.Chart.Name}}-{{.Chart.Version}}"
|
|
spec:
|
|
ports:
|
|
- port: {{default 80 .Values.httpPort}}
|
|
targetPort: 80
|
|
protocol: TCP
|
|
name: http
|
|
selector:
|
|
app: {{template "fullname" .}}
|