Skip to content
Commits on Source (2)
--- ---
- name: Setup Ansible Freeipa - name: Setup Ansible FreeIPA
hosts: ipaserver hosts: ipaserver
become: no become: no
gather_facts: no gather_facts: no
tasks: tasks:
- name: Clone kubespray repo ({{ freeipa_repo | default('https://github.com/freeipa/ansible-freeipa.git') }}) with required version ({{ freeipa_commit }}) - name: Clone Ansible FreeIPA repo ({{ freeipa_repo | default('https://github.com/freeipa/ansible-freeipa.git') }}) with required version ({{ freeipa_commit }})
git: git:
repo: "{{ freeipa_repo | default('https://github.com/freeipa/ansible-freeipa.git') }}" repo: "{{ freeipa_repo | default('https://github.com/freeipa/ansible-freeipa.git') }}"
version: "{{ freeipa_commit }}" version: "{{ freeipa_commit }}"
......