使用社区 EE 镜像运行 Ansible

您可以使用社区镜像运行 Ansible,而无需构建自定义 EE。

使用 community-ee-minimal 镜像,该镜像仅包含 ansible-core,或者使用 community-ee-base 镜像,该镜像还包含一些基本集合。运行以下命令以查看 community-ee-base 镜像中包含的集合

ansible-navigator collections --execution-environment-image ghcr.io/ansible-community/community-ee-base:latest

community-ee-minimal 容器内针对 localhost 运行以下 Ansible 特设命令

ansible-navigator exec "ansible localhost -m setup" --execution-environment-image ghcr.io/ansible-community/community-ee-minimal:latest --mode stdout

现在,创建一个简单的测试 playbook 并针对容器内的 localhost 运行它

- name: Gather and print local facts
  hosts: localhost
  become: true
  gather_facts: true
  tasks:

   - name: Print facts
     ansible.builtin.debug:
      var: ansible_facts
ansible-navigator run test_localhost.yml --execution-environment-image ghcr.io/ansible-community/community-ee-minimal:latest --mode stdout