Closed chkpwd closed 9 months ago
Seems I can fix this using an App Password. LunaSea is happy using HTTP Basic Auth.
The DevOpSarr terraform provider for Sonarr and Radarr do not support Basic Auth.
Created an App Password in Authentik:
resource "authentik_token" "media" {
identifier = "media"
description = "Token for media access"
user = authentik_user.main.id
intent = "app_password"
expiring = false
}
This should allow access to sonarr, radarr, etc through k8s_gateway in LunaSea.
Things missing:
PR approved.
https://goauthentik.io/docs/providers/proxy/header_authentication#receiving-authentication
Reading through this.