真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

Kubernetes命令行管理工具Kubectl怎么用

本篇文章給大家分享的是有關(guān)Kubernetes命令行管理工具Kubectl怎么用,小編覺得挺實用的,因此分享給大家學(xué)習(xí),希望大家閱讀完這篇文章后可以有所收獲,話不多說,跟著小編一起來看看吧。

創(chuàng)新互聯(lián)公司服務(wù)項目包括長樂網(wǎng)站建設(shè)、長樂網(wǎng)站制作、長樂網(wǎng)頁制作以及長樂網(wǎng)絡(luò)營銷策劃等。多年來,我們專注于互聯(lián)網(wǎng)行業(yè),利用自身積累的技術(shù)優(yōu)勢、行業(yè)經(jīng)驗、深度合作伙伴關(guān)系等,向廣大中小型企業(yè)、政府機(jī)構(gòu)等提供互聯(lián)網(wǎng)行業(yè)的解決方案,長樂網(wǎng)站推廣取得了明顯的社會效益與經(jīng)濟(jì)效益。目前,我們服務(wù)的客戶以成都為中心已經(jīng)輻射到長樂省份的部分城市,未來相信會繼續(xù)擴(kuò)大服務(wù)區(qū)域并繼續(xù)獲得客戶的支持與信任!

一、國內(nèi)安裝Kubectl

官網(wǎng)提供的安裝命令是:

curl -LO https://storage.googleapis.com/kubernetes-release/release/$(curl -s https://storage.googleapis.com/kubernetes-release/release/stable.txt)/bin/linux/amd64/kubectl

國內(nèi)直接安裝Kubectl會失敗主要是訪問了 google 的地址,但是可以通過Github上來找到可以進(jìn)行使用編譯好的二進(jìn)制文件

執(zhí)行安裝命令

wget https://dl.k8s.io/v1.15.3/kubernetes-client-linux-amd64.tar.gz
tar -zxvf kubernetes-client-linux-amd64.tar.gz
cd kubernetes/client/bin
chmod +x ./kubectl
sudo mv ./kubectl /usr/local/bin/kubectl

kubectl version 能夠正常看到輸出即可

二、配置文件

光有Kubectl命令想操作K8S集群還是不夠的,必須要把鏈接K8S的相關(guān)配置信息填寫進(jìn)去,默認(rèn)kubectl會在 ~/.kube/config 尋找配置文件

vim ~/.kube/config

apiVersion: v1
clusters:
- cluster:
    server: https://xxxxxxxxxx:443
    insecure-skip-tls-verify: true
  name: kubernetes
contexts:
- context:
    cluster: kubernetes
    user: "kubernetes-admin"
  name: kubernetes-admin-xxxxxx
current-context: kubernetes-admin-xxxxxxxx
kind: Config
preferences: {}
users:
- name: "kubernetes-admin"
  user: xxxxxxxx

就可以通過命令行執(zhí)行對K8S集群的控制了

kubectl version
Client Version: version.Info{Major:"1", Minor:"10", GitVersion:"v1.10.5", GitCommit:"32ac1c9073b132b8ba18aa830f46b77dcceb0723", GitTreeState:"clean", BuildDate:"2018-06-21T11:46:00Z", GoVersion:"go1.9.3", Compiler:"gc", Platform:"darwin/amd64"}
Server Version: version.Info{Major:"1", Minor:"11", GitVersion:"v1.11.5", GitCommit:"753b2dbc622f5cc417845f0ff8a77f539a4213ea", GitTreeState:"clean", BuildDate:"2018-11-26T14:31:35Z", GoVersion:"go1.10.3", Compiler:"gc", Platform:"linux/amd64"}

當(dāng)然也可以指定對應(yīng)的文件路徑作為配置文件

kubectl  --kubeconfig=~/.kubu/config xxxxxxxxxx

三、Kubectl 常用命令

kubectl apply – 通過文件名或控制臺輸入,對資源進(jìn)行配置。
kubectl create – 通過文件名或控制臺輸入,創(chuàng)建資源。
kubectl delete – 通過文件名、控制臺輸入、資源名或者label selector刪除資源。
kubectl edit – 編輯服務(wù)端的資源。
kubectl exec – 在容器內(nèi)部執(zhí)行命令。
kubectl get – 輸出一個/多個資源。
kubectl logs – 輸出pod中一個容器的日志。
kubectl namespace -(已停用)設(shè)置或查看當(dāng)前使用的namespace。
kubectl port-forward – 將本地端口轉(zhuǎn)發(fā)到Pod。
kubectl rolling-update – 對指定的replication controller執(zhí)行滾動升級。
kubectl stop – (已停用)通過資源名或控制臺輸入安全刪除資源。
kubectl version – 輸出服務(wù)端和客戶端的版本信息。
Basic Commands (Beginner):
  create         Create a resource from a file or from stdin.
  expose         使用 replication controller, service, deployment 或者 pod 并暴露它作為一個 新的
Kubernetes Service
  run            在集群中運(yùn)行一個指定的鏡像
  set            為 objects 設(shè)置一個指定的特征
  run-container  在集群中運(yùn)行一個指定的鏡像. This command is deprecated, use "run" instead

Basic Commands (Intermediate):
  get            顯示一個或更多 resources
  explain        查看資源的文檔
  edit           在服務(wù)器上編輯一個資源
  delete         Delete resources by filenames, stdin, resources and names, or by resources and label selector

Deploy Commands:
  rollout        Manage the rollout of a resource
  rolling-update 完成指定的 ReplicationController 的滾動升級
  scale          為 Deployment, ReplicaSet, Replication Controller 或者 Job 設(shè)置一個新的副本數(shù)量
  autoscale      自動調(diào)整一個 Deployment, ReplicaSet, 或者 ReplicationController 的副本數(shù)量

Cluster Management Commands:
  certificate    修改 certificate 資源.
  cluster-info   顯示集群信息
  top            Display Resource (CPU/Memory/Storage) usage.
  cordon         標(biāo)記 node 為 unschedulable
  uncordon       標(biāo)記 node 為 schedulable
  drain          Drain node in preparation for maintenance
  taint          更新一個或者多個 node 上的 taints

Troubleshooting and Debugging Commands:
  describe       顯示一個指定 resource 或者 group 的 resources 詳情
  logs           輸出容器在 pod 中的日志
  attach         Attach 到一個運(yùn)行中的 container
  exec           在一個 container 中執(zhí)行一個命令
  port-forward   Forward one or more local ports to a pod
  proxy          運(yùn)行一個 proxy 到 Kubernetes API server
  cp             復(fù)制 files 和 directories 到 containers 和從容器中復(fù)制 files 和 directories.
  auth           Inspect authorization

Advanced Commands:
  apply          通過文件名或標(biāo)準(zhǔn)輸入流(stdin)對資源進(jìn)行配置
  patch          使用 strategic merge patch 更新一個資源的 field(s)
  replace        通過 filename 或者 stdin替換一個資源
  convert        在不同的 API versions 轉(zhuǎn)換配置文件

Settings Commands:
  label          更新在這個資源上的 labels
  annotate       更新一個資源的注解
  completion     Output shell completion code for the specified shell (bash or zsh)

Other Commands:
  api-versions   Print the supported API versions on the server, in the form of "group/version"
  config         修改 kubeconfig 文件
  help           Help about any command
  plugin         Runs a command-line plugin
  version        輸出 client 和 server 的版本信息

以上就是Kubernetes命令行管理工具Kubectl怎么用,小編相信有部分知識點可能是我們?nèi)粘9ぷ鲿姷交蛴玫降?。希望你能通過這篇文章學(xué)到更多知識。更多詳情敬請關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道。


新聞標(biāo)題:Kubernetes命令行管理工具Kubectl怎么用
網(wǎng)頁地址:http://weahome.cn/article/pihpee.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部