kubectl - error: You must be logged in to the server
问题 I have configured OIDC with k8s installed using kubeadm. After the configuration, when I run the command kubectl --user=name@gmail.com get nodes I get error: You must be logged in to the server (the server has asked for the client to provide credentials (get nodes)) Can someone please help me with this? 回答1: I use kubectl --username=name@gmail.com get nodes and it works. Earlier I was using the parameter --user instead of --username . 回答2: Your password is probably missing. 来源: https:/