Estou tendo um problema com o Ansible Lint não encontrando community.general
módulos:
> ansible-lint <redacted>.yml
WARNING Listing 1 violation(s) that are fatal
syntax-check[unknown-module]: couldn't resolve module/action 'community.general.locale_gen'. This often indicates a misspelling, missing collection, or incorrect module path.
<readacted>.yml:16:3
Esta ação é:
- name: Set locale
community.general.locale_gen:
name: en_US.UTF-8
Estou no macOS Sonoma 14.4.1 e instalei o Ansible via Homebrew (detalhes da versão no final). Pelo que sei, isso inclui muitos dos módulos da comunidade sem a necessidade de instalá-los via Ansible Galaxy:
> ansible-galaxy collection list | grep community.general
community.general 8.6.0
Portanto, o manual funciona bem, mas ansilbe-lint
não consegue encontrar o módulo.
Eu notei isso no topo de ansible-galaxy collection list
:
# /opt/homebrew/Cellar/ansible/9.5.1/libexec/lib/python3.12/site-packages/ansible_collections
Collection Version
---------------------------------------- -------
Se eu definir ANSIBLE_COLLECTIONS_PATH
esse /opt/homebrew/.../ansible_collections
caminho, então funciona. Mas parece que eu não deveria ter que fazer isso? Se ansible-playbook
consegue encontrá-lo, por que não consegue ansible-lint
? Como posso ansible-lint
procurar automaticamente o caminho da coleção interno?
Informação da versão:
> ansible --version
ansible [core 2.16.6]
config file = /Users/dave/work/ansible/dribin-infra/ansible.cfg
configured module search path = ['/Users/dave/work/ansible/dribin-infra/library']
ansible python module location = /opt/homebrew/Cellar/ansible/9.5.1/libexec/lib/python3.12/site-packages/ansible
ansible collection location = /Users/dave/.ansible/collections:/usr/share/ansible/collections
executable location = /opt/homebrew/bin/ansible
python version = 3.12.3 (main, Apr 9 2024, 08:09:14) [Clang 15.0.0 (clang-1500.3.9.4)] (/opt/homebrew/Cellar/ansible/9.5.1/libexec/bin/python)
jinja version = 3.1.3
libyaml = True
==> ansible: stable 9.5.1 (bottled), HEAD
Automate deployment, configuration, and upgrading
https://www.ansible.com/
Installed
/opt/homebrew/Cellar/ansible/9.5.1 (31,927 files, 365.5MB) *
Poured from bottle using the formulae.brew.sh API on 2024-04-26 at 23:40:10
From: https://github.com/Homebrew/homebrew-core/blob/HEAD/Formula/a/ansible.rb
...