K8S kubelet logs error

1.error: You must be logged in to the server (the server has asked for the client to provide credentials ( pods/log nginx-7bb7cd8db5-v756s))

Approach:

kubelet default user permissions profile configuration as shown:

spacer.gifPictures .png


2.Error from server (Forbidden): Forbidden (user=system:anonymous, verb=get, resource=nodes, subresource=proxy) ( pods/log nginx-7bb7cd8db5-v756s)

Approach:

anonymous user is bound to a cluster-admin privileges

kubectl create clusterrolebinding system:anonymous --clusterrole=cluster-admin --user=system:anonymous

spacer.gifPictures .png


Guess you like

Origin blog.51cto.com/shunzi115/2432164