add-cas.yml 328 B

12345678910111213
  1. ---
  2. - hosts: cluster_hosts
  3. become: true
  4. vars:
  5. ca_files: []
  6. tasks:
  7. - name: Copy CAs to the trusted CAs location
  8. with_items: "{{ ca_files }}"
  9. copy:
  10. src: "{{ item }}"
  11. dest: /etc/pki/ca-trust/source/anchors/
  12. - name: Update trusted CAs
  13. shell: 'update-ca-trust enable && update-ca-trust extract'