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/static-service.yaml

22 lines
631 B
YAML
Raw Normal View History

2019-02-08 13:57:16 +00:00
apiVersion: v1
kind: Service
metadata:
name: {{ include "passbook.fullname" . }}-static
2019-02-08 13:57:16 +00:00
labels:
app.kubernetes.io/name: {{ include "passbook.name" . }}
helm.sh/chart: {{ include "passbook.chart" . }}
app.kubernetes.io/instance: {{ .Release.Name }}
app.kubernetes.io/managed-by: {{ .Release.Service }}
k8s.passbook.io/component: static
2019-02-08 13:57:16 +00:00
spec:
type: ClusterIP
2019-02-08 13:57:16 +00:00
ports:
- port: 8080
2019-02-08 13:57:16 +00:00
targetPort: http
protocol: TCP
name: http
selector:
app.kubernetes.io/name: {{ include "passbook.name" . }}
app.kubernetes.io/instance: {{ .Release.Name }}
k8s.passbook.io/component: static