feat(gitea): create PersistentVolume and PersistentVolumeClaim for Gitea feat(gitea): add script to create Gitea runner registration token secret feat(gitea): deploy Gitea Actions runner with Docker socket access feat(media): deploy JDownloader with Ingress configuration feat(media): set up Jellyfin media server with NFS and Ingress feat(media): configure qBittorrent deployment with Ingress feat(monitoring): add Grafana Loki datasource ConfigMap feat(monitoring): create Grafana admin credentials secret feat(monitoring): define PersistentVolumes for monitoring stack feat(network): implement DDNS CronJob for Porkbun DNS updates feat(network): create secret for Porkbun DDNS API credentials feat(network): set up Glances service and Ingress for Debian node fix(network): patch Pi-hole DNS services with external IPs feat(network): configure Traefik dashboard Ingress with Authentik auth feat(network): set up Watch Party service and Ingress for Mac Mini refactor(values): update Helm values files for various services
57 lines
1.4 KiB
YAML
57 lines
1.4 KiB
YAML
# Apply: kubectl apply -f manifests/authentik/authentik-proxy-outpost.yaml
|
|
# Delete: kubectl delete -f manifests/authentik/authentik-proxy-outpost.yaml
|
|
# Description: Authentik proxy outpost deployment and service for forward-auth integration.
|
|
apiVersion: v1
|
|
kind: ServiceAccount
|
|
metadata:
|
|
name: authentik-proxy-outpost
|
|
namespace: authentik
|
|
---
|
|
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
name: authentik-proxy-outpost
|
|
namespace: authentik
|
|
spec:
|
|
replicas: 1
|
|
selector:
|
|
matchLabels:
|
|
app: authentik-proxy-outpost
|
|
template:
|
|
metadata:
|
|
labels:
|
|
app: authentik-proxy-outpost
|
|
spec:
|
|
serviceAccountName: authentik-proxy-outpost
|
|
containers:
|
|
- name: proxy
|
|
image: ghcr.io/goauthentik/proxy:2026.2.1
|
|
env:
|
|
- name: AUTHENTIK_HOST
|
|
value: "https://auth.home.arpa"
|
|
- name: AUTHENTIK_INSECURE
|
|
value: "true"
|
|
- name: AUTHENTIK_TOKEN
|
|
valueFrom:
|
|
secretKeyRef:
|
|
name: authentik-proxy-token
|
|
key: token
|
|
ports:
|
|
- containerPort: 9000
|
|
name: http
|
|
- containerPort: 9443
|
|
name: https
|
|
---
|
|
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
name: authentik-proxy-outpost
|
|
namespace: authentik
|
|
spec:
|
|
selector:
|
|
app: authentik-proxy-outpost
|
|
ports:
|
|
- name: http
|
|
port: 9000
|
|
targetPort: 9000
|