-
Notifications
You must be signed in to change notification settings - Fork 83
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
Workload Identity requires Access Keys on Azure Storage Account to be enabled #1351
Comments
this driver would use workload identity to get access keys, if you don't want to use access keys, you could follow this example: |
Not sure I understood, it should solve the mentioned issue? we have similar setup just like the example in your repository but we still see the MI is used for getting the Storage Key as mentioned by @mkemmerz Could you please clarify? there is support to mount blob storage using fuse without storage key? |
if you use the example(https://github.com/qxsch/Azure-Aks/tree/master/aks-blobfuse-mi), it would always mount with managed identity auth instead of account key, the key part is
|
@andyzhangx Thank you we followed the guide and successfully mount blobs. Thanks razo |
It is not recommended to use storage account keys according to Microsoft and policies within our company disallow it. How can we mount the blob storage without using the keys and with Workload Identity? Giving one whole node pool access to a storage account is also not that much of an option, right? |
The Kubernetes project currently lacks enough contributors to adequately respond to all issues. This bot triages un-triaged issues according to the following rules:
You can:
Please send feedback to sig-contributor-experience at kubernetes/community. /lifecycle stale |
We have similar policies in our company. It would be great if there were a way to avoid using access keys and instead use a workload identity for authentication. For us, an inline/ephemeral CSI mount is particularly important. Would be great to get some guidance on this issue! /remove-lifecycle stale |
Hello, I have some questions to the Workload Identity feature.
Currently trying out the blob-csi-driver 1.24.1 release together with an AKS 1.29.2. I am not using the microsoft managed blob-csi-driver.
I only got the Workload Identity for blobs running if my Azure Storage Account has access keys enabled. The blob-node pod would print out the following message:
clientID(xxx) is specified, use service account token to get account key
This is in the blob.go
Azure also shows the access in the Activity log:
The Service Account Token should be used to directly access the Storage Account resources I think.
The Workload Identity should allow to disable the access keys and only use RBAC for the Azure Storage Account.
Maybe I missed something here or my setup is not correct or is this intended behaviour?
The text was updated successfully, but these errors were encountered: