7516fe142f
* Ansible: move to Ansible 3.4.0 which uses ansible-base 2.10.10 * Docs: add a note about ansible upgrade post 2.9.x * CI: ensure ansible is removed before ansible 3.x is installed to avoid pip failures * Ansible: use newer ansible-lint * Fix ansible-lint 5.0.11 found issues * syntax issues * risky-file-permissions * var-naming * role-name * molecule tests * Mitogen: use 0.3.0rc1 which adds support for ansible 2.10+ * Pin ansible-base to 2.10.11 to get package fix on RHEL8
31 lines
957 B
YAML
31 lines
957 B
YAML
---
|
|
|
|
- name: Query Azure VMs IPs # noqa 301
|
|
command: az vm list-ip-addresses -o json --resource-group {{ azure_resource_group }}
|
|
register: vm_ip_list_cmd
|
|
|
|
- name: Query Azure VMs Roles # noqa 301
|
|
command: az vm list -o json --resource-group {{ azure_resource_group }}
|
|
register: vm_list_cmd
|
|
|
|
- name: Query Azure Load Balancer Public IP # noqa 301
|
|
command: az network public-ip show -o json -g {{ azure_resource_group }} -n kubernetes-api-pubip
|
|
register: lb_pubip_cmd
|
|
|
|
- name: Set VM IP, roles lists and load balancer public IP
|
|
set_fact:
|
|
vm_ip_list: "{{ vm_ip_list_cmd.stdout }}"
|
|
vm_roles_list: "{{ vm_list_cmd.stdout }}"
|
|
lb_pubip: "{{ lb_pubip_cmd.stdout }}"
|
|
|
|
- name: Generate inventory
|
|
template:
|
|
src: inventory.j2
|
|
dest: "{{ playbook_dir }}/inventory"
|
|
mode: 0644
|
|
|
|
- name: Generate Load Balancer variables
|
|
template:
|
|
src: loadbalancer_vars.j2
|
|
dest: "{{ playbook_dir }}/loadbalancer_vars.yml"
|
|
mode: 0644
|