# infrastructure/longhorn/ui-ingress/oauth2-proxy-longhorn.yaml apiVersion: v1 kind: Service metadata: name: oauth2-proxy-longhorn namespace: longhorn-system labels: app: oauth2-proxy-longhorn spec: ports: - name: http port: 80 targetPort: 4180 selector: app: oauth2-proxy-longhorn --- apiVersion: apps/v1 kind: Deployment metadata: name: oauth2-proxy-longhorn namespace: longhorn-system labels: app: oauth2-proxy-longhorn spec: replicas: 2 selector: matchLabels: app: oauth2-proxy-longhorn template: metadata: labels: app: oauth2-proxy-longhorn annotations: vault.hashicorp.com/agent-inject: "true" vault.hashicorp.com/role: "longhorn" vault.hashicorp.com/agent-inject-secret-oidc-config: "kv/data/atlas/longhorn/oauth2-proxy" vault.hashicorp.com/agent-inject-template-oidc-config: | {{- with secret "kv/data/atlas/longhorn/oauth2-proxy" -}} client_id = "{{ .Data.data.client_id }}" client_secret = "{{ .Data.data.client_secret }}" cookie_secret = "{{ .Data.data.cookie_secret }}" {{- end -}} spec: serviceAccountName: longhorn-vault nodeSelector: node-role.kubernetes.io/worker: "true" affinity: nodeAffinity: preferredDuringSchedulingIgnoredDuringExecution: - weight: 90 preference: matchExpressions: - key: hardware operator: In values: ["rpi5","rpi4"] containers: - name: oauth2-proxy image: quay.io/oauth2-proxy/oauth2-proxy:v7.6.0 imagePullPolicy: IfNotPresent args: - --provider=oidc - --config=/vault/secrets/oidc-config - --redirect-url=https://longhorn.bstein.dev/oauth2/callback - --oidc-issuer-url=https://sso.bstein.dev/realms/atlas - --scope=openid profile email groups - --email-domain=* - --allowed-group=admin - --set-xauthrequest=true - --pass-access-token=true - --set-authorization-header=true - --cookie-secure=true - --cookie-samesite=lax - --cookie-refresh=20m - --cookie-expire=168h - --insecure-oidc-allow-unverified-email=true - --upstream=http://longhorn-frontend.longhorn-system.svc.cluster.local - --http-address=0.0.0.0:4180 - --skip-provider-button=true - --skip-jwt-bearer-tokens=true - --oidc-groups-claim=groups - --cookie-domain=longhorn.bstein.dev ports: - containerPort: 4180 name: http readinessProbe: httpGet: path: /ping port: 4180 initialDelaySeconds: 5 periodSeconds: 10 livenessProbe: httpGet: path: /ping port: 4180 initialDelaySeconds: 20 periodSeconds: 20