dbc1ed3af3
The templates which generate the configuration for the various components require access to the facts defining the cluster layout. Running the setup*.yml playbooks with --tags config would not include common_task_data_node_hosts.yml and templating would fail due to undefined vars. This change applys an 'always' tag to all uses of the include. Change-Id: I6c55a60aef54f9bb26eb9a2af08315265daa82d9
56 lines
1.2 KiB
YAML
56 lines
1.2 KiB
YAML
---
|
|
- name: Install apm-server
|
|
hosts: apm-server
|
|
become: true
|
|
vars:
|
|
haproxy_ssl: false
|
|
|
|
vars_files:
|
|
- vars/variables.yml
|
|
|
|
environment: "{{ deployment_environment_variables | default({}) }}"
|
|
|
|
pre_tasks:
|
|
- include_tasks: common_task_data_node_hosts.yml
|
|
tags:
|
|
- always
|
|
|
|
tasks:
|
|
- include_tasks: common_task_install_elk_repo.yml
|
|
|
|
- name: Ensure apm-server is installed
|
|
apt:
|
|
name: "{{ item }}"
|
|
state: "{{ elk_package_state | default('present') }}"
|
|
update_cache: true
|
|
with_items:
|
|
- apm-server
|
|
register: _apt_task
|
|
until: _apt_task is success
|
|
retries: 3
|
|
delay: 2
|
|
tags:
|
|
- package_install
|
|
|
|
- name: exit playbook after uninstall
|
|
meta: end_play
|
|
when:
|
|
- elk_package_state | default('present') == 'absent'
|
|
|
|
post_tasks:
|
|
- name: Drop apm-server conf file
|
|
template:
|
|
src: templates/apm-server.yml.j2
|
|
dest: /etc/apm-server/apm-server.yml
|
|
|
|
- name: Enable and restart APM Server
|
|
systemd:
|
|
name: "apm-server"
|
|
enabled: true
|
|
state: restarted
|
|
|
|
tags:
|
|
- server-install
|
|
|
|
- import_playbook: setupAPMserver.yml
|