如何在我的 Ubuntu 机器上安装 Velero 客户端?
How can I install Velero Client on my Ubuntu machine?
我尝试了 documentation 中列出的选项 1 和选项 2,但没有下载 tar 球。
我真的很困惑。是否需要在本地安装Velero,在Kube集群中安装一个服务器?
我尝试了 Windows 和 Linux,但没有结果。如果你能解释一下这两种操作系统的过程,我将不胜感激。
从你提供的文档来看,它为你提供了源代码,可能你理解有误,我会在这里展示:
选项1:导入路径就是源代码所在的位置。示例如下:
mkdir $HOME/go
export GOPATH=$HOME/go
go get github.com/vmware-tanzu/velero
所以你可以使用 URL https://github.com/vmware-tanzu/velero 来查找和下载源。
选项 2: 发布页面 将引导您到源代码所在的页面,它在页面的下方.仔细找就好了
Is it necessary to install Velero locally and a server in the Kube
cluster?
全凭自己。从Velero的介绍来看,它具有here:
的特点
- 备份您的集群并在丢失时恢复。
- 将集群资源迁移到其他集群。
- 将您的生产集群复制到开发和测试集群。
可以帮助您备份Kubernetes集群中的数据,迁移集群资源到其他集群。我会建议您安装它以使用它的功能。或者,如果您使用其他工具而不是具有相同功能的 Velero 也没关系。
请按照以下步骤在 Ubuntu 中安装 Velero :
wget https://github.com/vmware-tanzu/velero/releases/download/v1.2.0/velero-v1.2.0-linux-amd64.tar.gz
tar -zxvf velero-v1.2.0-linux-amd64.tar.gz
sudo mv velero-v1.2.0-linux-amd64/velero /usr/local/bin/
在 Ubuntu 上安装 Velero 客户端的步骤:
安装 Velero 二进制文件:
wget https://github.com/vmware-tanzu/velero/releases/download/v1.3.2/velero-v1.3.2-linux-amd64.tar.gz
提取压缩包:
tar -xvf velero-v1.3.2-linux-amd64.tar.gz -C /tmp
将提取的 velero 二进制文件移动到 /usr/local/bin
sudo mv /tmp/velero-v1.3.2-linux-amd64/velero /usr/local/bin
验证安装:
velero version
输出应该是:
Client:
Version: v1.3.2
Git commit: 55a9914a3e4719fb1578529c45430a8c11c28145
<error getting server version: the server could not find the requested resource (post serverstatusrequests.velero.io)>
我尝试了 documentation 中列出的选项 1 和选项 2,但没有下载 tar 球。
我真的很困惑。是否需要在本地安装Velero,在Kube集群中安装一个服务器?
我尝试了 Windows 和 Linux,但没有结果。如果你能解释一下这两种操作系统的过程,我将不胜感激。
从你提供的文档来看,它为你提供了源代码,可能你理解有误,我会在这里展示:
选项1:导入路径就是源代码所在的位置。示例如下:
mkdir $HOME/go
export GOPATH=$HOME/go
go get github.com/vmware-tanzu/velero
所以你可以使用 URL https://github.com/vmware-tanzu/velero 来查找和下载源。
选项 2: 发布页面 将引导您到源代码所在的页面,它在页面的下方.仔细找就好了
Is it necessary to install Velero locally and a server in the Kube cluster?
全凭自己。从Velero的介绍来看,它具有here:
的特点- 备份您的集群并在丢失时恢复。
- 将集群资源迁移到其他集群。
- 将您的生产集群复制到开发和测试集群。
可以帮助您备份Kubernetes集群中的数据,迁移集群资源到其他集群。我会建议您安装它以使用它的功能。或者,如果您使用其他工具而不是具有相同功能的 Velero 也没关系。
请按照以下步骤在 Ubuntu 中安装 Velero :
wget https://github.com/vmware-tanzu/velero/releases/download/v1.2.0/velero-v1.2.0-linux-amd64.tar.gz
tar -zxvf velero-v1.2.0-linux-amd64.tar.gz
sudo mv velero-v1.2.0-linux-amd64/velero /usr/local/bin/
在 Ubuntu 上安装 Velero 客户端的步骤:
安装 Velero 二进制文件:
wget https://github.com/vmware-tanzu/velero/releases/download/v1.3.2/velero-v1.3.2-linux-amd64.tar.gz
提取压缩包:
tar -xvf velero-v1.3.2-linux-amd64.tar.gz -C /tmp
将提取的 velero 二进制文件移动到 /usr/local/bin
sudo mv /tmp/velero-v1.3.2-linux-amd64/velero /usr/local/bin
验证安装:
velero version
输出应该是:
Client:
Version: v1.3.2
Git commit: 55a9914a3e4719fb1578529c45430a8c11c28145
<error getting server version: the server could not find the requested resource (post serverstatusrequests.velero.io)>