下载集合

要下载集合及其依赖项以进行脱机安装,请运行 ansible-galaxy collection download。这会将指定的集合及其依赖项下载到指定文件夹,并创建一个 requirements.yml 文件,该文件可用于在没有访问 Galaxy 服务器的机器上安装这些集合。默认情况下,所有集合都将下载到 ./collections 文件夹中。

install 命令类似,集合的来源基于 配置的 Galaxy 服务器配置。即使下载的集合是通过 URL 或 tarball 路径指定的,集合也会从配置的 Galaxy 服务器重新下载。

集合可以指定为一个或多个集合,或者使用 requirements.yml 文件(类似于 ansible-galaxy collection install)。

要下载单个集合及其依赖项

ansible-galaxy collection download my_namespace.my_collection

要下载特定版本的单个集合

ansible-galaxy collection download my_namespace.my_collection:1.0.0

要下载多个集合,可以像上面那样指定多个集合作为命令行参数,也可以使用 使用 requirements 文件安装多个集合 文档中记录的格式的 requirements 文件。

ansible-galaxy collection download -r requirements.yml

您还可以下载源集合目录。集合使用强制的 galaxy.yml 文件构建。

ansible-galaxy collection download /path/to/collection

ansible-galaxy collection download git+file:///path/to/collection/.git

您可以通过提供命名空间路径来下载来自单个命名空间的多个源集合。

ns/
├── collection1/
│   ├── galaxy.yml
│   └── plugins/
└── collection2/
    ├── galaxy.yml
    └── plugins/
ansible-galaxy collection install /path/to/ns

所有集合默认下载到 ./collections 文件夹中,但您可以使用 -p--download-path 指定其他路径。

ansible-galaxy collection download my_namespace.my_collection -p ~/offline-collections

下载集合后,文件夹将包含指定的集合、它们的依赖项以及一个 requirements.yml 文件。您可以将此文件夹原样用于 ansible-galaxy collection install 以在没有访问 Galaxy 服务器的机器上安装集合。

# This must be run from the folder that contains the offline collections and requirements.yml file downloaded
# by the internet-connected host
cd ~/offline-collections
ansible-galaxy collection install -r requirements.yml