29 lines
664 B
YAML
29 lines
664 B
YAML
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
{{- if .Values.service.annotations }}
|
|
annotations:
|
|
{{ toYaml .Values.service.annotations | indent 4 }}
|
|
{{- end }}
|
|
name: {{ template "rancher.fullname" . }}
|
|
labels:
|
|
{{ include "rancher.labels" . | indent 4 }}
|
|
spec:
|
|
{{- /*
|
|
If service.type is not provided this attribute is ommitted and k8s default of ClusterIP is used.
|
|
*/}}
|
|
{{- if .Values.service.type }}
|
|
type: {{ .Values.service.type }}
|
|
{{- end }}
|
|
ports:
|
|
- port: 80
|
|
targetPort: 80
|
|
protocol: TCP
|
|
name: http
|
|
- port: 443
|
|
targetPort: 444
|
|
protocol: TCP
|
|
name: https-internal
|
|
selector:
|
|
app: {{ template "rancher.fullname" . }}
|