33 lines
811 B
YAML
Executable file
33 lines
811 B
YAML
Executable file
---
|
|
- name: Tuning core
|
|
ansible.builtin.include_tasks: tuning_core.yml
|
|
|
|
- name: Install certs for Angie and PT AF Nginx
|
|
ansible.builtin.include_role:
|
|
name: certs_settings
|
|
|
|
- name: Check free ports
|
|
ansible.builtin.include_tasks: find_free_ports.yml
|
|
|
|
- name: Angie settings
|
|
ansible.builtin.include_tasks: angie_settings.yml
|
|
|
|
- name: Nginx in Docker settings
|
|
ansible.builtin.include_tasks: add_nginx_conf_for_docker.yml
|
|
|
|
- name: Sysctl modify
|
|
ansible.builtin.include_tasks: sysctl_modify.yml
|
|
|
|
- name: Fluent-bit install
|
|
ansible.builtin.include_role:
|
|
name: fluent_bit_install
|
|
when: app_config[app].FLUENT_BIT_NEED
|
|
|
|
- name: Auspex install
|
|
ansible.builtin.include_role:
|
|
name: auspex
|
|
ignore_errors: true
|
|
|
|
- name: Docker PTAF run
|
|
ansible.builtin.include_tasks: docker_ptaf_run.yml
|
|
...
|