1. 程式人生 > >Minikube:使用 Kubernetes 進行本地開發

Minikube:使用 Kubernetes 進行本地開發

Minikube 是一個允許開發人員在本地使用和執行 Kubernetes 叢集的工具,從而使開發人員的生活變得輕鬆。

在這篇部落格中,對於我測試的例子,我使用的是 Linux Mint 18,但其它 Linux 發行版在安裝部分沒有區別。

  1. cat /etc/lsb-release
  1. DISTRIB_ID=LinuxMint
  2. DISTRIB_RELEASE=18.1
  3. DISTRIB_CODENAME=serena
  4. DISTRIB_DESCRIPTION=”Linux Mint 18.1 Serena

先決條件

為了與 Minkube 一起工作,我們應該安裝 Kubectl 和 Minikube 和一些虛擬化驅動程式。

  • 對於 OS X,安裝 xhyve 驅動VirtualBox 或者 VMware Fusion,然後再安裝 Kubectl 和 Minkube。

    1. curl -LO https://storage.googleapis.com/kubernetes-release/release/$(curl -s https://storage.googleapis.com/kubernetes-release/release/stable.txt)/bin/darwin/amd64/kubectl
    2. chmod +x ./kubectl
    3. sudo mv ./kubectl /usr/local/bin/kubectl
    4. curl -Lo minikube https://storage.googleapis.com/minikube/releases/v0.21.0/minikube-darwin-amd64 && chmod +x minikube && sudo mv minikube /usr/local/bin/
  • 對於 Windows,安裝 VirtualBox 或者 Hyper-V,然後再安裝 Kubectl 和 Minkube。

    1. curl -LO https://storage.googleapis.com/kubernetes-release/release/v1.7.0/bin/windows/amd64/kubectl.exe

    將二進位制檔案新增到你的 PATH 中(這篇文章解釋瞭如何修改 PATH)

    下載 minikube-windows-amd64.exe,將其重新命名為 minikube.exe,並將其新增到你的 PATH 中。在這可以找到最新版本。

  • 對於 Linux,安裝 VirtualBox 或者 KVM,然後再安裝 Kubectl 和 Minkube。

    1. curl -LO https://storage.googleapis.com/kubernetes-release/release/$(curl -s https://storage.googleapis.com/kubernetes-release/release/stable.txt)/bin/linux/amd64/kubectl
    2. chmod +x ./kubectl
    3. sudo mv ./kubectl /usr/local/bin/kubectl
    4. curl -Lo minikube https://storage.googleapis.com/minikube/releases/v0.21.0/minikube-linux-amd64 && chmod +x minikube && sudo mv minikube /usr/local/bin/

使用 Minikube

我們先從這個 Dockerfile 建立一個映象:

  1. FROM busybox
  2. ADD index.html /www/index.html
  3. EXPOSE 8000
  4. CMD httpd -p 8000 -h /www; tail -f /dev/null

新增你希望在 index.html 中看到的內容。

構建映象:

  1. docker build -t eon01/hello-world-web-server .

我們來執行容器來測試它:

  1. docker run -d --name webserver -p 8000:8000 eon01/hello-world-web-server

這是 docker ps 的輸出:

  1. docker ps
  2. CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
  3. 2ad8d688d812 eon01/hello-world-web-server "/bin/sh -c 'httpd..." 3 seconds ago Up 2 seconds 0.0.0.0:8000->8000/tcp webserver

讓我們提交映象並將其上傳到公共 Docker Hub 中。你也可以使用自己的私有倉庫:

  1. docker commit webserver
  2. docker push eon01/hello-world-web-server

刪除容器,因為我們將與 Minikube 一起使用它。

  1. docker rm -f webserver

啟動 Minikube:

  1. minkube start

檢查狀態:

  1. minikube status

我們執行一個單一節點:

  1. kubectl get node

執行 webserver:

  1. kubectl run webserver --image=eon01/hello-world-web-server --port=8000

webserver 應該會暴露它的埠:

  1. kubectl expose deployment webserver --type=NodePort

為了得到服務 url 輸入:

  1. minikube service webserver --url

使用下面的命令得到 Web 頁面的內容:

  1. curl $(minikube service webserver --url)

顯示執行中叢集的摘要:

  1. kubectl cluster-info

更多細節:

  1. kubectl cluster-info dump

我們還可以使用以下方式列出 pod:

  1. kubectl get pods

使用下面的方式訪問面板:

  1. minikube dashboard

如果你想訪問 Web 程式的前端,輸入:

  1. kubectl proxy

如果我們要在容器內部執行一個命令,請使用以下命令獲取 pod id:

  1. kubetctl get pods

然後像這樣使用:

  1. kubectl exec webserver-2022867364-0v1p9 -it -- /bin/sh

最後完成了,請刪除所有部署:

  1. kubectl delete deployments --all

刪除所有 pod:

  1. kubectl delete pods --all

並且停止 Minikube。

  1. minikube stop