How do I integrate AWS Secret Store CSI driver to be used as credential providers for metadata database? #849
Unanswered
ketozhang
asked this question in
Questions & Answers
Replies: 1 comment
-
@ketozhang Your two main options are:
Note, that because we reference the secret via environment variables, if you rotate your DB's password (and the secret gets updated), the Pods will NOT be restarted automatically. To automate these restarts, you would need to use something like these tools (WARNING: these restarts WILL restart all your Airflow Workers, possibly losing work): |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
AWS Secret Store CSI driver is consumable only by mounting the secret as a volume.
IIUC, the helm chart only supports specifying the metadata database credentials by specifying the Secret key in
externalDatabase
orextraEnv
that makes its way to the pod'senv.valueFrom.secretKeyRef
field.Is there any way to use the CSI driver in this Helm chart?
Beta Was this translation helpful? Give feedback.
All reactions