jrhoward
jrhoward
looking at the code you could change it so that it retrieves the secret by annotation `kubernetes.io/service-account.name: "service account name "` in the method `getServiceAccountTokenName` using the [operator.go](https://github.com/argoproj/argo-workflows/search?q=getServiceAccountTokenName) as an...
that is not a work around, the current implementation in workflow looks for a section in the service account manifest that has a reference to the secret. That section has...
> Is there a way to install AW with @alexec 's PR? you can follow the [running locally documentation](https://argoproj.github.io/argo-workflows/running-locally/) but checkout branch fix-8320 Note: I had to remove `go.sum` and...
Don't think I am qualified to take over the PR but I'll help out where I can as I have the branch running locally with 1.24. I have installed the...
interceptor.go is missing updates. I modified and built locally. https://github.com/argoproj/argo-workflows/blob/a3c326fdf0d2133d5e78ef71854499f576e7e530/server/auth/webhook/interceptor.go#L87-L90 Remove lines 87 to 89 and change line 90 from `serviceAccount.Secrets[0].Name` to leverage the new util: ```go tokenSecret, err :=...
ok I just discovered that there is a work around which does not require a code change on argoworkflow. Not sure if it is documented so I can't vouch for...