set 设置 kubeconfig 文件中的一个单个值 set-cluster 设置 kubeconfig 文件中的一个集群条目 set-context 设置 kubeconfig 文件中的一个 context 条目 set-credentials 设置 kubeconfig 文件中的一个用户条目 unset 取消设置 kubeconfig 文件中的一个单个值 use-context 设置 kubeconfig 文件中的当前上下文 view 显...
而当前上下文的命名空间和当前上下文本身都可以通过kubect1 config命令进行更改。 要想快速切换到不同的命名空间,可以设置以下别名:alias kcd='kubectl config set-context $(kubectl config current-context)--namespace'。然后,可以使用kcd some-namespace在命名空间之间进行切换。 *** kubectl中的双横杠 kubectl中的...
$ kubectl config current-context# 显示当前的上下文 $ kubectl config use-context my-cluster-name# 设置默认上下文为 my-cluster-name #向 kubeconf 中增加支持基本认证的新集群 $ kubectl configset-credentials kubeuser/foo.kubernetes.com --username=kubeuser --password=kubepassword # 使用指定的用户名和 ...
rename-context 在kubeconfig中给一个context改名 set 在kubeconfig中设置单个值 set-cluster 在kubeconfig中设置一个集群 set-context 在kubeconfig中设置一个context set-credentials 在kubeconfig中设置一个用户 unset 取消设置 use-context 在kubeconfig中设置current-context view 显示合并后的kubeconfig设置或指定kube...
执行kubectl create -f replicaset.yaml之后,API server将会在存储后端保存你的ReplicaSet资源定义。 image 这将触发controller manager中的ReplicaSet controller,后者监视ReplicaSet资源的创建,更新和删除。 image ReplicaSet controller为每个ReplicaSet副本创建了一个Pod定义(根据在ReplicaSet定义中的Pod模板创建)并将它们...
添加其他集群的context cd ~/.kube cp config config.bak 添加cluster信息 先把base64格式的证书数据保存成证书。 echo "base64数据" | base64 -d>sit.ca 然后执行添加 kubectl config --kubeconfig=config set-cluster sit --server=https://10.250.x.x:6443 --certificate-authority=sit.ca ...
执行kubectl create -f replicaset.yaml之后,API server将会在存储后端保存你的ReplicaSet资源定义。 这将触发controller manager中的ReplicaSet controller,后者监视ReplicaSet资源的创建,更新和删除。 ReplicaSet controller为每个ReplicaSet副本创建了一个Pod定义(根据在ReplicaSet定义中的Pod模板创建)并将它们保存到存储后端...
$ kubectl config use-context my-cluster-name # 设置默认的上下文为 my-cluster-name #在 kubeconf 中添加一个支持基本鉴权的新集群。 $ kubectl config set-credentials kubeuser/foo.kubernetes.com--username=kubeuser--password=kubepassword # 使用特定的用户名和命名空间设置上下文。
set-context Sets a context entry in kubeconfig set-credentials Sets a user entry in kubeconfig unset Unsets an individual value in a kubeconfig file use-context Sets the current-context in a kubeconfig file view Display merged kubeconfig settings or a specified kubeconfig file ...
# 使用指定的用户名和 namespace 设置上下文$ kubectl config set-context gce --user=cluster-admin --namespace=foo\&&kubectl config use-context gce 创建对象 Kubernetes 的清单文件可以使用 json 或 yaml 格式定义。可以以.yaml、.yml、或者.json为扩展名。