通知分子从Ansible Galaxy下载角色依赖项
dependency:
name: galaxy
options:
role-file: requirements.yml然而,似乎没有任何关于分子如何被告知下载集合的文档。https://molecule.readthedocs.io/en/stable/configuration.html#ansible-galaxy没有列出集合选项,我也没有看到在https://github.com/ansible/molecule上有一个开放的特性请求。
如果这是一个解决了分子的问题,我想这将是分子github回购的一个特性请求。我怎样才能告诉分子,它需要下载一个集合,为一个无星系依赖?
我的requirements.yml文件如下所示:
---
roles:
- src: gantsign.visual-studio-code
- src: artis3n.bitwarden_app
collections:
- name: artis3n.githubusing.html#install-multiple-collections-with-a-requirements-file的Ansible支持这种格式。
https://stackoverflow.com/questions/59228374
复制相似问题