-
Notifications
You must be signed in to change notification settings - Fork 1.4k
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
[Azure] Add AAD Workload Identity support #5116
Comments
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions. |
Do we have something working that I can test ? |
I tried to use Velero + AAD WI with the proxy mode of AAD WI (https://azure.github.io/azure-workload-identity/docs/topics/service-account-labels-and-annotations.html#annotations-1) : It's working but my backups are shown as "failed" the only error I found is :
but the backup is done, I can see my backup in my storage account, I also tried with disk snapshot, it's working but backup is also shown as failed. |
after some investigations, it was the memory request/limit too low of my pod which was causing this issue. So if you want to use AAD Workload Identity with Velero, you can,
before, you'll need to create the AAD Identity : https://azure.github.io/azure-workload-identity/docs/quick-start.html |
Thanks, I will give it a try. |
Is there any progress on this as I don't want to have to use the proxy? |
@pinlast @hunter86bg @stevehipwell Per my understanding, seems there is nothing to do on the Velero side to support the Azure AD workload identity. Correct me if I'm wrong. |
@ywk253100 This ticket is about getting explicit support for AAD Workload Identity directly into Velero. @flbla's solution is a workaround that uses a sidecar (ie an additional container) that offers backwards compatibility with AAD Pod Identity. It would still be better for Velero to properly support AAD Workload Identity without the need of the sidecar. |
I agree with @pearj that proper support for AAD Workload Identity would be better. I don't know Go well enough to help, but there are links and examples here: |
Thanks @pearj @adamrushuk. Let's put it into the 1.11 milestone. There is a PR that updates the Azure libraries used by the Velero Azure plugin, maybe it helps for this issue either. Let's do the verification after the PR merged |
@ywk253100 It looks like in that PR updates the azure-sdk-for-go/sdk/azidentity to v1.2.0, however full support isn't until v1.3.0-beta.1 (which is the most recent release at the time of writing). It seems that v1.3.0-beta.1 brings automatic support for AAD Workload Identity Support as long as the correct environment variables are there (which they should be). That sounds probably the easiest way to implement. That same issue also had example code if you need to stay on sdk/azidentity v1.2.0 for some reason. |
@pearj Got it. Will test it after the PR is merged |
Does this work with https://github.com/vmware-tanzu/velero-plugin-for-microsoft-azure, too? What I have to configure there? |
As we are close to the FC date of v1.11.0, the GA version of v1.3.0 for Azure SDK BTW, making changes only on the Velero Azure plugin side isn't enough, Restic/Kopia used by Velero doesn't support AAD workload identity either at this moment. Issue opened for Kopia |
Using this workaround does work for making backups and restoring them. However I found that if I delete my helmrelease my pods are stuck in terminating state:
We decided it is not worth it if pods can become hanging. We'll wait for v1.12 |
@paytience It depends on the version of AAD workload identity you use |
I understand, any fixes for this issue? Does a new release of AAD workload identity fix using sidecar annotation? |
@paytience : with the latest version of AAD workload identity (1.1.0) I don't have the issue anymore. |
@flbla We're using webhook controller 1.0.0 through AKS Add-on to run AAD workload identity webhook unfortunately.. |
The Azure Workload Identity is supported by the Velero Azure plugin, please refer to the doc https://github.com/vmware-tanzu/velero-plugin-for-microsoft-azure/blob/main/README.md#option-2-use-azure-ad-workload-identity. But it is not supported by Kopia yet, so taking file system backup with the Azure Workload Identity is not working, please note that. |
Actually, it is not yet available since they have not made a release yet. In v.1.7.1 workload identity is still not supported unfortunately.. |
Kopia repository part is fixed by #6686 |
For anyone else stumbling upon this that wants to use the helm chart, the following are the important helm values:
|
Describe the problem/challenge you have
We are using AAD Workload Identity for granting permissions in our azure k8s. And seems like there is no support for it in velero. Only for getting permissions from file or env.
Considering Azure is going to deprecate pod identity for workload identity that would make sense.
Describe the solution you'd like
Add AAD Workload Identity support, getting token from azure-identity-token secret.
Environment:
helm version: version.BuildInfo{Version:"v3.9.0", GitCommit:"7ceeda6c585217a19a1131663d8cd1f7d641b2a7", GitTreeState:"clean", GoVersion:"go1.18.2"}
helm chart version and app version: chart: velero-2.30.1 app: 1.9.0
Kubernetes version : Client Version: version.Info{Major:"1", Minor:"22", GitVersion:"v1.22.0", GitCommit:"c2b5237ccd9c0f1d600d3072634ca66cefdf272f", GitTreeState:"clean", BuildDate:"2021-08-04T18:03:20Z", GoVersion:"go1.16.6", Compiler:"gc", Platform:"darwin/amd64"}
Server Version: version.Info{Major:"1", Minor:"23", GitVersion:"v1.23.5", GitCommit:"5a97ee6d15525f6e4a1c2646bf1dfd2ebd5220b5", GitTreeState:"clean", BuildDate:"2022-06-15T04:26:33Z", GoVersion:"go1.17.8", Compiler:"gc", Platform:"linux/amd64"}
Kubernetes installer & version: aks
Cloud provider or hardware configuration: azure
The text was updated successfully, but these errors were encountered: