feat: manual only deployment

This commit is contained in:
2026-06-07 16:19:45 +02:00
parent 7f176ea9cd
commit 6f61671bf1
+27
View File
@@ -10,3 +10,30 @@ ingress:
enabled: false enabled: false
path: "/" path: "/"
pathType: "Prefix" pathType: "Prefix"
webserverConfig: |
from flask_appbuilder.security.manager import AUTH_OAUTH
AUTH_TYPE = AUTH_OAUTH
AUTH_USER_REGISTRATION = True
AUTH_USER_REGISTRATION_ROLE = "Viewer"
OAUTH_PROVIDERS = [
{
"name": "keycloak",
"token_key": "access_token",
"icon": "fa-key",
"remote_app": {
"client_id": "airflow",
"client_secret": "kbUXWFjemGqHdfEZg5gxgcCnjK0y6eel",
"api_base_url": "http://keycloak.49.13.143.254.nip.io/realms/master/protocol/openid-connect",
"request_token_url": None,
"access_token_url": "http://keycloak.49.13.143.254.nip.io/realms/master/protocol/openid-connect/token",
"authorize_url": "http://keycloak.49.13.143.254.nip.io/realms/master/protocol/openid-connect/auth",
"jwks_uri": "http://keycloak.49.13.143.254.nip.io/realms/master/protocol/openid-connect/certs",
"client_kwargs": {
"scope": "openid email profile"
}
}
}
]