argo-workflows/access-token/ #9134
Replies: 5 comments 7 replies
-
If you are here and wondering why the token generation Command is not working anymore. Most likely you upgraded your K8s Cluster to version 1.24 and K8s won’t generate Secrets any longer automatically for ServiceAccounts. You now have to manually generate these secrets with References: https://itnext.io/big-change-in-k8s-1-24-about-serviceaccounts-and-their-secrets-4b909a4af4e0 |
Beta Was this translation helpful? Give feedback.
-
Section kubectl -n argo apply -f - <<EOF
apiVersion: v1
kind: Secret
metadata:
name: jenkins.service-account-token
annotations:
kubernetes.io/service-account.name: jenkins
type: kubernetes.io/service-account-token
EOF |
Beta Was this translation helpful? Give feedback.
-
I am curious. Will the token expire after certain time? |
Beta Was this translation helpful? Give feedback.
-
Hi i'm getting this error after creating token and using it to sign in with Argo Workflow server. |
Beta Was this translation helpful? Give feedback.
-
I followed all step but got the following:
How should i specify the mode? |
Beta Was this translation helpful? Give feedback.
-
argo-workflows/access-token/
https://argoproj.github.io/argo-workflows/access-token/
Beta Was this translation helpful? Give feedback.
All reactions