#仅设置e2e集群项中的server字段,不影响其他字段$kubectl config set-cluster e2e --server=https://1.2.3.4#向e2e集群项中添加认证鉴权数据$kubectl config set-cluster e2e --certificate-authority=~/.kube/e2e/kubernetes.ca.crt#取消dev集群项中的证书检查$kubectl config set-cluster e2e --insecure-skip-tls...
Cluster Management Commands: certificate 修改 certificate 资源. cluster-info 显示集群信息 top Display Resource (CPU/Memory/Storage) usage. cordon 标记 node 为 unschedulable uncordon 标记 node 为 schedulable drain Drain node in preparation for maintenance taint 更新一个或者多个 node 上的 taints Troubles...
-s或--server 指定API Server的地址和端口。 --kubeconfig 使用的kubeconfig配置文件路径,默认为~/.kune/config。 -n或--namespace 命令执行的目标名称空间。 回到顶部 四kubectl常用操作示例 4.1 创建资源对象 ~# kubectl create namespace dev #创建名为dev的名称空间。~# kubectl create service clusterip dem...
~# kubectl drain 192.168.174.105 --force --ignore-daemonsets --delete-emptydor-data#驱逐当前节点的所有pod,适用于无状态服务。 1. 4.7 pod扩容缩容 ~# kubectl scale demoapp --replicas=3 #将demoapp的pod副本数扩展至3个。 1.
kubectl configset-credentials xxx--client-certificate=./xxx.crt--client-key=./xxx.key--embed-certs=true在 kubeconfig下新增加一个 xxx 这个账号 kubectl configset-context xxx@kubernetes--cluster=kubernetes--user=xxx 切换账号 这时的账号是没有任何权限的需要使用 rolebinding 等绑定权限 ...
certificate # 修改 certificate 资源. cluster-info # 显示集群信息 top # Display Resource (CPU/Memory/Storage) usage. cordon # 标记 node 为 unschedulable uncordon # 标记 node 为 schedulable drain # Drain node in preparation for maintenance taint # 更新一个或者多个 node 上的 taintsTroubleshooting ...
--certificate-authority="": 用以进行认证授权的.cert文件路径。 --client-certificate="": TLS使用的客户端证书路径。 --client-key="": TLS使用的客户端密钥路径。 --cluster="": 指定使用的kubeconfig配置文件中的集群名。 --context="": 指定使用的kubeconfig配置文件中的环境名。 --insecure-sk...
The name of the kubeconfig context to use--insecure-skip-tls-verify=false: If true, the server's certificate will not be checked for validity. This willmake your HTTPS connections insecure--kubeconfig='': Path to the kubeconfig file to use for CLI requests.--log-backtrace-at=:0: when...
allcertificatesigningrequests(缩写 csr)clusterrolebindings clusterrolcomponentstatuses(缩写 cs)configmaps(缩写 cm)controllerrevisions cronjobscustomresourcedefinition(缩写 crd)daemonsets(缩写 ds)deployments(缩写 deploy)endpoints(缩写 ep)events(缩写 ev)horizontalpodautoscalers(缩写 hpa)ingresses(缩写 ing)jobslim...
kubectl drain <nodename> --ignore-daemonsets --delete-emptydir-data By using--ignore-daemonsets, the DaemonSet pods will be ignored. Additionally,--delete-emptydir-dataensures that if there are pods using emptyDir, the node will continue to be drained, and any local data associated with the ...