charts/forwardauth/templates/service.yaml

20 lines
471 B
YAML
Raw Normal View History

apiVersion: v1
kind: Service
metadata:
name: {{ template "helm.fullname" . }}
labels:
app: {{ template "helm.name" . }}
chart: {{ template "helm.chart" . }}
release: {{ .Release.Name }}
heritage: {{ .Release.Service }}
spec:
type: {{ .Values.service.type }}
ports:
- port: {{ .Values.service.port }}
targetPort: 8080
protocol: TCP
name: http
selector:
app: {{ template "helm.name" . }}
release: {{ .Release.Name }}