gpt4 book ai didi

ubuntu - 在 Google 计算上的 ubuntu 上设置 Kubernetes

转载 作者:太空宇宙 更新时间:2023-11-03 16:44:11 26 4
gpt4 key购买 nike

任何人都可以帮助我理解我在尝试设置 kubernetes 时遇到的这个错误。我正在尝试遵循此 url并运行命令

$ curl -sS https://get.k8s.io | bash
ERROR: (gcloud.components.update) The component manager is disabled for this installation

我在 google compute Ubuntu 机器上运行命令。感谢任何帮助

添加完整的错误(Ubunut 15.4),完全成熟的 google sdk 安装后........................解包 kubernetes 发布 v1.0.3在 gce 上创建一个 kubernetes ...使用提供程序启动集群:gce...调用 verify-prereqs您无法执行此操作,因为组件管理器已被禁用此安装。如果你想得到最新的Google Cloud SDK 版本,请查看我们的主要下载页面:

https://developers.google.com/cloud/sdk/

错误:(gcloud.components.update) 此安装禁用了组件管理器您无法执行此操作,因为组件管理器已被禁用此安装。如果你想得到最新的Google Cloud SDK 版本,请查看我们的主要下载页面:

https://developers.google.com/cloud/sdk/

错误:(gcloud.components.update) 此安装禁用了组件管理器您无法执行此操作,因为组件管理器已被禁用此安装。如果你想得到最新的Google Cloud SDK 版本,请查看我们的主要下载页面:

https://developers.google.com/cloud/sdk/

错误:(gcloud.components.update) 此安装禁用了组件管理器... 调用 kube-up

最佳答案

问题是某些 ubuntu(和其他)发行版附带通过本地包管理器安装的 google cloud SDK,但它并不包含所有内容。例如,kubectl 丢失,如使用此命令所见:

gcloud components list

当您尝试为 Kubernetes 添加所需的组件时:

gcloud components install kubectl

你最终遇到了这个错误:

ERROR: (gcloud.components.update) The component manager is disabled for this installation

这是 Google Cloud SDK 问题跟踪器上的一个已知问题:Issue 336: kubectl not installed by google-cloud-sdk debian package, and not installable

不幸的是,它为第一次测试 kubernetes 的人提供了糟糕的体验,因为很难找到一个快速和干净的分步解决方案。

这是一个:

sudo apt-get update
sudo apt-get remove google-cloud-sdk
curl https://sdk.cloud.google.com | bash
exec -l $SHELL
gcloud init
gcloud components list
gcloud components install kubectl
gcloud components list

这最后一条命令应该显示 kubectl 已安装并且一切都是最新的。

关于ubuntu - 在 Google 计算上的 ubuntu 上设置 Kubernetes,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32036989/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com