Black lives matter.
We stand in solidarity with the Black community.
Racism is unacceptable.
It conflicts with the core values of the Kubernetes project and our community does not tolerate it.
We stand in solidarity with the Black community.
Racism is unacceptable.
It conflicts with the core values of the Kubernetes project and our community does not tolerate it.
本页展示了两种在 Kubernetes 上快速创建 Calico 集群的方法。
先决条件: gcloud
启动一个带有 Calico 的 GKE 集群,只需加上flag --enable-network-policy
。
语法
gcloud container clusters create [CLUSTER_NAME] --enable-network-policy
示例
gcloud container clusters create my-calico-cluster --enable-network-policy
使用如下命令验证部署是否正确。
kubectl get pods --namespace=kube-system
Calico 的 pods 名以 calico
打头,检查确认每个 pods 状态为 Running
。
在15分钟内使用 kubeadm 得到一个本地单主机 Calico 集群,请参考 Calico 快速入门。
集群运行后,您可以按照 声明 Network Policy 去尝试使用 Kubernetes NetworkPolicy。