-
Notifications
You must be signed in to change notification settings - Fork 182
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
Auth Token #398
Comments
I bet you run Kubernetes 1.22 or greater. Since then, the token secret is no longer created automatically. The main docu needs to be updated.
|
@Jeansen Thanks for sharing the solution. We will update the readme |
Hi @tianni4104, I can help out with this issue. I'm a beginner to Kubernetes but really interested to work on this. |
@Harrish-Selvarajah That's awesome! I can assign this to you |
Thank you @tianni4104, is there a community channel I can discuss about this issue, get help and get started on it ? |
@Harrish-Selvarajah We don't have a channel for now. If you have any questions, feel free to comment here |
can i work on this ? |
Not sure if I am doing it wrong, but there is no auth token generated with:
Create the service account in the current namespace (we assume default)
kubectl create serviceaccount skooner-sa
Give that service account root on the cluster
kubectl create clusterrolebinding skooner-sa --clusterrole=cluster-admin --serviceaccount=default:skooner-sa
Find the secret that was created to hold the token for the SA
kubectl get secrets
Show the contents of the secret to extract the token
kubectl describe secret skooner-sa-token-xxxxx
The text was updated successfully, but these errors were encountered: