This repository has been archived on 2024-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
authentik/helm/templates/web-service.yaml

22 lines
630 B
YAML
Raw Permalink Normal View History

2019-02-08 13:57:16 +00:00
apiVersion: v1
kind: Service
metadata:
2020-12-05 21:08:42 +00:00
name: {{ include "authentik.fullname" . }}-web
2019-02-08 13:57:16 +00:00
labels:
2020-12-05 21:08:42 +00:00
app.kubernetes.io/name: {{ include "authentik.name" . }}
2019-02-08 13:57:16 +00:00
app.kubernetes.io/instance: {{ .Release.Name }}
app.kubernetes.io/managed-by: {{ .Release.Service }}
2020-12-05 21:08:42 +00:00
helm.sh/chart: {{ include "authentik.chart" . }}
k8s.goauthentik.io/component: web
2019-02-08 13:57:16 +00:00
spec:
type: ClusterIP
2019-02-08 13:57:16 +00:00
ports:
- port: 80
2019-02-08 13:57:16 +00:00
targetPort: http
protocol: TCP
name: http
selector:
2020-12-05 21:08:42 +00:00
app.kubernetes.io/name: {{ include "authentik.name" . }}
2019-02-08 13:57:16 +00:00
app.kubernetes.io/instance: {{ .Release.Name }}
2020-12-05 21:08:42 +00:00
k8s.goauthentik.io/component: web