美文网首页
kubectl配置token认证

kubectl配置token认证

作者: wwq2020 | 来源:发表于2020-12-06 11:44 被阅读0次

如果没有account

kubectl create namespace accounttest
kubectl create serviceaccount myaccount -n accounttest 
kubectl create clusterrolebinding myaccount --clusterrole=cluster-admin --serviceaccount=accounttest:myaccount

查看token

kubectl describe secrets -n accounttest $(kubectl -n accounttest get secret | awk '/myaccount/{print $1}')

配置kubectl config

kubectl config set-credentials myaccount --token=查到的token
kubectl config set-cluster mycluster --insecure-skip-tls-verify=true --server=集群地址
kubectl config set-context mycontext --cluster=mycluster --user=myaccount

使用

kubectl config use-context mycontext
kubectl get pods -A

相关文章

网友评论

      本文标题:kubectl配置token认证

      本文链接:https://www.haomeiwen.com/subject/gzlowktx.html