如何在“离线”下安装krew环境?

发布于 2025-01-09 02:00:33 字数 320 浏览 0 评论 0原文

我了解到“krew”是著名且精美的 kubernetes 插件。

所以我想在我的集群中安装“krew”。

但由于某些原因,我的集群必须与公共互联网断开连接。

我在集群中离线安装了 k8s。 (kubespray)

我通过 FTP 将必要的二进制文件推送到我的集群中。

在这种情况下,我该如何安装“krew”?

我尝试将“krew”二进制文件传输到我的集群,但安装后“krew”二进制文件从公共 github 查找一些文件。

由于我的集群无法访问公共互联网,“krew”无法找到一些文件,安装也失败。

你能帮助我吗?

I got to know that the "krew" is the famous and fancy kubernetes plugin.

So I want to install the "krew" in my clusters.

But because of some reasons, my clusters must be disconnected to public internet.

I installed the k8s in my clusters with offline. (kubespray)

I pushed the necessary binary files into my cluster through FTP.

In this condition, how can I install "krew"?

I tried to transmit the "krew" binary file to my cluster, but after installment the "krew" binary looked for some files from public github.

Since my cluster cannot reach the public internet, the "krew" failed to find some files and the installment also failed.

Can you help me?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

柠檬 2025-01-16 02:00:33

不确定在离线环境中安装 krew 会实现什么效果。 krew 需要互联网来通过互联网从其源下载各种插件。

尽管如此,您“可能”根本不需要安装krew。您可以在此链接手动检查插件列表。一旦您决定要安装哪个插件,请下载二进制/可执行文件并将其放置在您的 $PATH 目录下。如果您使用 kubectl- 前缀命名可执行文件,并且该文件位于 $PATH 中,那么 kubectl 会将其视为插件。

然后您可以通过以下方式运行它:

  1. kubectl
  2. ./

如何制作一个示例此处提供自定义插件 链接。这可以用来替换任何下载的插件。

请注意,这种方法对我来说适用于大多数插件,但不能保证对所有插件都有效,因为不可能对所有插件进行测试。

Not sure what you would achieve by having krew installed in an offline environment. krew need the internet to download the various plugins from their source over the internet.

Although, You "may" not need to install krew at all. You can manually check the plugin list at this link. Once you decide which plugin you want to install, download the binary/executable and place it under your $PATH directory. If you name the executable with the kubectl- prefix, kubectl would consider it as a plugin, if the file is placed in $PATH.

Then you may run it as any of the following way:

  1. kubectl <plugin-name>
  2. ./<plugin-downloaded-executable>

An example of how to make a custom plugin is provided here link. This can be used to replace any downloaded plugin.

Note that, this method worked for me for most of the plugins, but not guaranteed to work on all as testing for all the plugins is not possible.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文