mirror of
https://github.com/kubernetes-sigs/kubespray.git
synced 2025-12-13 21:34:40 +03:00
* Enable reserved variable name checks and fix violations Updated .ansible-lint configuration to skip only var-naming[pattern] and var-naming[no-role-prefix] instead of skipping the entire var-naming rule. This enables the check for reserved variable names. Renamed variables that used reserved names to avoid conflicts. Updated all references in tasks, variables, and templates. Signed-off-by: Ali Afsharzadeh <afsharzadeh8@gmail.com> * Rename namespace variable inside tasks instead of deleting it Signed-off-by: Ali Afsharzadeh <afsharzadeh8@gmail.com> * Change hosts variable to vm_hosts Signed-off-by: Ali Afsharzadeh <afsharzadeh8@gmail.com> * Use k8s_namespace instead of dashboard_namespace in dashboard.yml.j2 template Signed-off-by: Ali Afsharzadeh <afsharzadeh8@gmail.com> --------- Signed-off-by: Ali Afsharzadeh <afsharzadeh8@gmail.com>
53 lines
1.9 KiB
YAML
53 lines
1.9 KiB
YAML
---
|
|
- name: Generate SSH keypair
|
|
community.crypto.openssh_keypair:
|
|
size: 2048
|
|
path: "{{ lookup('env', 'ANSIBLE_PRIVATE_KEY_FILE') }}"
|
|
mode: '400'
|
|
register: ssh_key
|
|
|
|
- name: Start vms for CI job
|
|
kubernetes.core.k8s:
|
|
definition: "{{ lookup('template', 'vm.yml.j2', template_vars=item) }}"
|
|
loop: "{{ cluster_layout }}"
|
|
loop_control:
|
|
index_var: index
|
|
|
|
- name: Wait for vms to have IP addresses
|
|
kubernetes.core.k8s_info:
|
|
api_version: kubevirt.io/v1
|
|
kind: VirtualMachineInstance
|
|
label_selectors:
|
|
- "ci_job_id={{ ci_job_id }}"
|
|
namespace: "{{ pod_namespace }}"
|
|
register: vmis
|
|
until: vmis.resources
|
|
| map(attribute='status.interfaces.0')
|
|
| rejectattr('ipAddress', 'defined') == []
|
|
retries: 30
|
|
delay: 10
|
|
|
|
- name: Massage VirtualMachineInstance data into an Ansible inventory structure
|
|
vars:
|
|
ips: "{{ vmis.resources | map(attribute='status.interfaces.0.ipAddress') }}"
|
|
names: "{{ vmis.resources | map(attribute='metadata.annotations.inventory_name') }}"
|
|
_groups: "{{ (vmis.resources | map(attribute='metadata.annotations.ansible_groups') | map('split', ','))}}"
|
|
vm_hosts: "{{ ips | zip(_groups, names)
|
|
| map('zip', ['ansible_host', 'ansible_groups', 'inventory_name'])
|
|
| map('map', 'reverse') | map('community.general.dict') }}"
|
|
loop: "{{ vm_hosts | map(attribute='ansible_groups') | flatten | unique }}"
|
|
set_fact:
|
|
ci_inventory: "{{ ci_inventory|d({}) | combine({
|
|
item: {
|
|
'hosts': vm_hosts | selectattr('ansible_groups', 'contains', item)
|
|
| rekey_on_member('inventory_name')
|
|
}
|
|
})
|
|
}}"
|
|
|
|
- name: Create inventory for CI tests
|
|
copy:
|
|
content: "{{ ci_inventory | to_yaml }}"
|
|
dest: "{{ ansible_inventory_sources[0] }}/ci_inventory.yml"
|
|
mode: "0644"
|