-
Notifications
You must be signed in to change notification settings - Fork 10
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Airflow DAGs unable to read credentials from k8s secret #504
Comments
As we discussed previously DAGs can load credentials in two ways:
|
@kirillmakhonin airflow.connections are set only during cluster creation and legion deployment. we need the ability to update non-aws credentials without cluster recreation and not in Airflow UI. The idea is that non-aws credentials can be stored in k8s secret, that is updated directly. |
After discussion with @dsuslov , we decided to store all connections credentials in one k8s secret map.
|
Currently Airflow Hooks are trying to get credentials connections from K8s secrets, but it's forbidden for them to read any secrets from k8s. Need to update RBAC
The text was updated successfully, but these errors were encountered: