main.yml 385 B

1234567891011121314
  1. ---
  2. # Split off from check-env role to optimize playbooks that only need k8s auth.
  3. - name: We need some packages to be there
  4. become: yes
  5. yum:
  6. name:
  7. - python3-jmespath
  8. - python3.11-jmespath
  9. - python3-kubernetes
  10. - ansible-collection-ansible-posix
  11. - ansible-collection-ansible-utils
  12. - ansible-collection-community-general
  13. state: latest
  14. ...