Minikube:使用 Kubernetes 進行本地開發
Minikube 是一個允許開發人員在本地使用和執行 Kubernetes 叢集的工具,從而使開發人員的生活變得輕鬆。
在這篇部落格中,對於我測試的例子,我使用的是 Linux Mint 18,但其它 Linux 發行版在安裝部分沒有區別。
cat /etc/lsb-release
DISTRIB_ID=LinuxMint
DISTRIB_RELEASE=18.1
DISTRIB_CODENAME=serena
DISTRIB_DESCRIPTION=”Linux Mint 18.1 Serena”
先決條件
為了與 Minkube 一起工作,我們應該安裝 Kubectl 和 Minikube 和一些虛擬化驅動程式。
-
對於 OS X,安裝 xhyve 驅動、VirtualBox 或者 VMware Fusion,然後再安裝 Kubectl 和 Minkube。
curl -LO https://storage.googleapis.com/kubernetes-release/release/$(curl -s https://storage.googleapis.com/kubernetes-release/release/stable.txt)/bin/darwin/amd64/kubectl
chmod +x ./kubectl
sudo mv ./kubectl /usr/local/bin/kubectl
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。
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。
curl -LO https://storage.googleapis.com/kubernetes-release/release/$(curl -s https://storage.googleapis.com/kubernetes-release/release/stable.txt)/bin/linux/amd64/kubectl
chmod +x ./kubectl
sudo mv ./kubectl /usr/local/bin/kubectl
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 建立一個映象:
FROM busybox
ADD index.html /www/index.html
EXPOSE 8000
CMD httpd -p 8000 -h /www; tail -f /dev/null
新增你希望在 index.html 中看到的內容。
構建映象:
docker build -t eon01/hello-world-web-server .
我們來執行容器來測試它:
docker run -d --name webserver -p 8000:8000 eon01/hello-world-web-server
這是 docker ps
的輸出:
docker ps
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
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 中。你也可以使用自己的私有倉庫:
docker commit webserver
docker push eon01/hello-world-web-server
刪除容器,因為我們將與 Minikube 一起使用它。
docker rm -f webserver
啟動 Minikube:
minkube start
檢查狀態:
minikube status
我們執行一個單一節點:
kubectl get node
執行 webserver:
kubectl run webserver --image=eon01/hello-world-web-server --port=8000
webserver 應該會暴露它的埠:
kubectl expose deployment webserver --type=NodePort
為了得到服務 url 輸入:
minikube service webserver --url
使用下面的命令得到 Web 頁面的內容:
curl $(minikube service webserver --url)
顯示執行中叢集的摘要:
kubectl cluster-info
更多細節:
kubectl cluster-info dump
我們還可以使用以下方式列出 pod:
kubectl get pods
使用下面的方式訪問面板:
minikube dashboard
如果你想訪問 Web 程式的前端,輸入:
kubectl proxy
如果我們要在容器內部執行一個命令,請使用以下命令獲取 pod id:
kubetctl get pods
然後像這樣使用:
kubectl exec webserver-2022867364-0v1p9 -it -- /bin/sh
最後完成了,請刪除所有部署:
kubectl delete deployments --all
刪除所有 pod:
kubectl delete pods --all
並且停止 Minikube。
minikube stop