This repository has been archived on 2025-03-03. You can view files and clone it, but cannot push or open issues or pull requests.
iac/kubernetes/apps/production/authentik/service.yaml

34 lines
595 B
YAML

---
apiVersion: v1
kind: Service
metadata:
name: authentik-lb
namespace: authentik
spec:
type: LoadBalancer
selector:
app.kubernetes.io/name: authentik
ports:
- name: http
port: 9000
targetPort: 9000
protocol: TCP
- name: https
port: 9443
targetPort: 9443
protocol: TCP
---
apiVersion: v1
kind: Service
metadata:
name: authentik-ldap-lb
namespace: authentik
spec:
type: LoadBalancer
selector:
app.kubernetes.io/name: authentik-outpost-ldap
ports:
- name: ldap
port: 389
targetPort: 3389
protocol: TCP