Jens L.
Jens L.
Not currently possible with just authentik, however you could work around this by setting a custom header (https://goauthentik.io/docs/providers/proxy/custom_headers), and then checking for its existence/value in traefik
https://github.com/goauthentik/authentik/pull/3780
Also trying out netbird currently (great project btw) and I've noticed one error seems to come from the netbird frontend injecting a slash into the well-known URL if you use...
See the issue linked above, I monkey-patched this in the compiled main.js file and I can now correctly set the issuer. However there's still some 401 errors but also a...
Yeah that's a good point, it's kinda required that flux adopts that label when things are moved around. Maybe a better approach would be to have a Prometheus metric with...
Good idea, despite having contributed to the notification controller I didn't think to use it like this For the metric, how would you feel about a PR that adds such...
We solved this issue by using the notification controller, which shows us if any objects are in a reconciliation loop. I'll close this issue P.S. thanks for your great work...
no longer required with current versions
`request.context['pending_user']` cannot be set to a string, it has to be set to a user object. Try `request.context['pending_user'] = ak_user_by(username='my-user-name')`
@derfabianpeter what you're describing is separate issue, placeholders are actually placeholders in the flow interface while they set the default value in the user settings interface, which is also not...