mirror of
https://github.com/k8s-at-home/charts.git
synced 2025-01-24 16:09:08 +00:00
114be3b2aa
* 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
20 lines
471 B
YAML
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 }}
|