溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

怎樣在筆記本上搭建Kubernetes+Istio開發(fā)環(huán)境

發(fā)布時(shí)間:2021-12-10 17:20:29 來源:億速云 閱讀:123 作者:柒染 欄目:云計(jì)算

本篇文章為大家展示了怎樣在筆記本上搭建Kubernetes+Istio開發(fā)環(huán)境,內(nèi)容簡明扼要并且容易理解,絕對(duì)能使你眼前一亮,通過這篇文章的詳細(xì)介紹希望你能有所收獲。

說明:文章測試通過環(huán)境 Docker CE 18.09 (Kubernetes 1.10.3) 以及 Istio 1.0.4

先決條件,你需要一個(gè) Docker for Mac或者Docker for Windows的安裝包,如果沒有請(qǐng)下載下載 Docker CE最新版本。由于Kubernetes大量的容器鏡像在 gcr.io, 無法在國內(nèi)保證穩(wěn)定的訪問。我們提供了一些工具腳本,幫助從阿里云鏡像服務(wù)下載所需鏡像

首先,

git clone https://github.com/AliyunContainerService/k8s-for-docker-desktop
cd k8s-for-docker-desktop

Docker for Mac 開啟 Kubernetes

為 Docker daemon 配置 Docker Hub 的中國官方鏡像加速 https://registry.docker-cn.com

可選操作: 為 Kubernetes 配置 CPU 和 內(nèi)存資源,建議分配 4GB 或更多內(nèi)存。

怎樣在筆記本上搭建Kubernetes+Istio開發(fā)環(huán)境cdn.com/61ae11ebd5b54db875390a1f2a5f36c6a4a32154.png">

預(yù)先從阿里云Docker鏡像服務(wù)下載 Kubernetes 所需要的鏡像, 可以通過修改 images.properties 文件加載你自己需要的鏡像

./load_images.sh

開啟 Kubernetes,并等待 Kubernetes 開始運(yùn)行

Docker for Windows 開啟 Kubernetes

為 Docker daemon 配置 Docker Hub 的中國官方鏡像加速 https://registry.docker-cn.com

怎樣在筆記本上搭建Kubernetes+Istio開發(fā)環(huán)境

可選操作: 為 Kubernetes 配置 CPU 和 內(nèi)存資源,建議分配 4GB 或更多內(nèi)存。

預(yù)先從阿里云Docker鏡像服務(wù)下載 Kubernetes 所需要的鏡像, 可以通過修改 images.properties 文件加載你自己需要的鏡像

使用 Bash shell

./load_images.sh

使用 PowerShell

 .\load_images.ps1

說明: 如果因?yàn)榘踩呗詿o法執(zhí)行 PowerShell 腳本,請(qǐng)?jiān)?“以管理員身份運(yùn)行” 的 PowerShell 中執(zhí)行 Set-ExecutionPolicy RemoteSigned 命令。

開啟 Kubernetes,并等待 Kubernetes 開始運(yùn)行

怎樣在筆記本上搭建Kubernetes+Istio開發(fā)環(huán)境

配置 Kubernetes

可選操作: 切換Kubernetes運(yùn)行上下文至 docker-for-desktop

kubectl config use-context docker-for-desktop

驗(yàn)證 Kubernetes 集群狀態(tài)

kubectl cluster-info
kubectl get nodes

部署 Kubernetes dashboard

kubectl create -f https://raw.githubusercontent.com/kubernetes/dashboard/master/src/deploy/recommended/kubernetes-dashboard.yaml

kubectl create -f kubernetes-dashboard.yaml

開啟 API Server 訪問代理

kubectl proxy

通過如下 URL 訪問 Kubernetes dashboard

http://localhost:8001/api/v1/namespaces/kube-system/services/https:kubernetes-dashboard:/proxy/#!/overview?namespace=default

說明:如果測試 Istio,不需要安裝 Ingress,如果需要 Ingress 可以參考 https://github.com/AliyunContainerService/k8s-for-docker-desktop 中 Ingress相關(guān)章節(jié)

安裝 Helm

可以根據(jù)文檔安裝 helm https://github.com/helm/helm/blob/master/docs/install.md

在 Mac OS 上安裝
# Use homebrew on Mac
brew install kubernetes-helm

# Install Tiller into your Kubernetes cluster
helm init --upgrade -i registry.cn-hangzhou.aliyuncs.com/google_containers/tiller:v2.11.0 --skip-refresh

# update charts repo (Optional)
helm repo update
在Windows上安裝
# Use Chocolatey on Windows
choco install kubernetes-helm

# Install Tiller into your Kubernetes cluster
helm init --upgrade -i registry.cn-hangzhou.aliyuncs.com/google_containers/tiller:v2.11.0 --skip-refresh

# update charts repo (Optional)
helm repo update

配置 Istio

可以根據(jù)文檔安裝 Istio https://istio.io/docs/setup/kubernetes/

下載 Istio 1.0.4 并安裝 CLI
curl -L https://git.io/getLatestIstio | sh -
cd istio-1.0.4/
export PATH=$PWD/bin:$PATH

在Windows上,您可以手工下載Istio安裝包,或者把getLatestIstio.ps1拷貝到你希望下載 Istio 的目錄,并執(zhí)行 - 說明:根據(jù)社區(qū)提供的安裝腳本修改而來

.\getLatestIstio.ps1
通過 Helm chart 安裝 Istio
helm install install/kubernetes/helm/istio --name istio --namespace istio-system
查看 istio 發(fā)布狀態(tài)
helm status istio
default 名空間開啟自動(dòng) sidecar 注入
kubectl label namespace default istio-injection=enabled
kubectl get namespace -L istio-injection
安裝 Book Info 示例
kubectl apply -f samples/bookinfo/platform/kube/bookinfo.yaml
kubectl apply -f samples/bookinfo/networking/bookinfo-gateway.yaml

確認(rèn)示例應(yīng)用在運(yùn)行中

export GATEWAY_URL=localhost:80
curl -o /dev/null -s -w "%{http_code}\n">

可以通過瀏覽器訪問

http://localhost/productpage

說明:如果當(dāng)前80端口已經(jīng)被占用或保留,我們可以編輯 install/kubernetes/helm/istio/values.yaml 文件中
Gateway 端口進(jìn)行調(diào)整,比如將 80 端口替換為 8888 端口

      ## You can add custom gateway ports
    - port: 8888  # Changed from 80
      targetPort: 80
      name: http2
      nodePort: 31380

然后執(zhí)行如下命令并生效

kubectl delete service istio-ingressgateway -n istio-system
helm upgrade istio install/kubernetes/helm/istio
學(xué)習(xí) Istio

大家參照 Istio 開始學(xué)習(xí)吧, https://istio.io/zh/docs/examples/bookinfo/

怎樣在筆記本上搭建Kubernetes+Istio開發(fā)環(huán)境

刪除實(shí)例應(yīng)用
samples/bookinfo/platform/kube/cleanup.sh

卸載 Istio

helm del --purge istio
kubectl delete -f install/kubernetes/helm/istio/templates/crds.yaml -n istio-system

上述內(nèi)容就是怎樣在筆記本上搭建Kubernetes+Istio開發(fā)環(huán)境,你們學(xué)到知識(shí)或技能了嗎?如果還想學(xué)到更多技能或者豐富自己的知識(shí)儲(chǔ)備,歡迎關(guān)注億速云行業(yè)資訊頻道。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請(qǐng)聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI