在 Google Cloud 上安裝
Kubernetes 最初由谷歌開發,用於為其容器引擎供電。因此,Kubernetes 叢集是 Google 的一等公民。
在容器引擎中建立 Kubernetes 叢集需要來自 Google Cloud SDK 的 gcloud
命令。要在本地安裝此命令,請使用以下選項之一:
- 使用互動式安裝程式(對於新手來說最簡單的方法):
curl https://sdk.cloud.google.com | bash
exec -l $SHELL
gcloud init
-
從 https://cloud.google.com/sdk/ 下載 SDK 並執行相應的安裝檔案。
例如,要在
Linux(x86_64)
中安裝:
curl -Lo gcloud-sdk.tar.gz https://dl.google.com/dl/cloudsdk/channels/rapid/downloads/google-cloud-sdk-142.0.0-linux-x86_64.tar.gz
tar xvf ./gcloud-sdk.tar.gz
./google-cloud-sdk/install.sh
gcloud init
安裝 gcloud
後,建立一個 Kubernetes 叢集:
# Give our cluster a name
CLUSTER_NAME=example-cluster
# Number of machines in the cluster.
NUM_NODES=3
gcloud container clusters create $CLUSTER_NAME --num_nodes=$NUM_VMS