charts/forwardauth/templates/service.yaml
Jeff Billimek 114be3b2aa
adding auth0 chart (#62)
* adding auth0 chart

Signed-off-by: Jeff Billimek <jeff@billimek.com>

* renaming auth0 chart to forwardauth

Signed-off-by: Jeff Billimek <jeff@billimek.com>

* adding home stanza to charts.yaml

* adding dniel as maintainer

* fixing linting error with Chart.yaml
2019-08-08 22:23:39 -04:00

20 lines
471 B
YAML

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 }}