- Update Longhorn Node API versions from v1beta1 to v1beta2 in disk management tasks - Add venv_path configuration and set ansible_python_interpreter to use virtual environment - Introduce python3.14-venv.yml task and python314_venv role for Python virtual environment setup
20 lines
476 B
YAML
20 lines
476 B
YAML
---
|
|
- name: Packages
|
|
ansible.builtin.include_tasks: packages.yml
|
|
|
|
- name: Kernel modules
|
|
ansible.builtin.include_tasks: kernel.yml
|
|
|
|
- name: Firewall
|
|
ansible.builtin.include_tasks: firewall.yml
|
|
|
|
- name: SELinux patch
|
|
ansible.builtin.include_tasks: selinux.yml
|
|
|
|
- name: Install python3.14 Virtual Environment
|
|
ansible.builtin.include_tasks: python3.14-venv.yml
|
|
|
|
- name: Disks
|
|
ansible.builtin.include_tasks: disks.yml
|
|
when: longhorn_disks | default([]) | length > 0
|