似乎get.k8s.io是部署Kubernetes集群的推荐方法,但是此脚本不支持Digital Ocean。

是否有其他方法可以轻松在我错过的Digital Ocean上建立集群?

谢谢

最佳答案

您可以使用kubicorn轻松在Digital Ocean中创建一个相当不错的Kubernetes集群。这是执行此操作所需的步骤:

// Install kubicorn
go get github.com/kris-nova/kubicorn

// Configure your auth
export DIGITALOCEAN_ACCESS_TOKEN=*****************************************

// Create your kubernetes profile from the default profile
kubicorn create mycluster --profile do

// Tweak your cluster as you like
kubicorn edit mycluster

// Apply your profile
kubicorn apply mycluster -v 4

// Use kubectl to access your cluster
kubectl get no

请注意,kubicorn是作为库和命令行工具提供的,因此,如果您愿意的话,您应该也可以在程序中包含此逻辑。

资料来源:https://www.nivenly.com/kubernetes-on-digital-ocean-with-encrypted-vpn-service-mesh/

关于digital-ocean - 将Kubernetes集群部署到Digital Ocean?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/29328750/

10-11 16:01