insights.yml 531 Bytes
Newer Older
1
- name: Deploy Insights
e0d committed
2
  hosts: all
3
  become: True
e0d committed
4 5 6 7
  gather_facts: True
  vars:
    ENABLE_DATADOG: False
    ENABLE_NEWRELIC: True
8
    CLUSTER_NAME: 'insights'
e0d committed
9
  roles:
10
    - aws
e0d committed
11 12 13
    - role: nginx
      nginx_sites:
        - insights
14
    - insights
e0d committed
15 16 17 18
    - role: datadog
      when: COMMON_ENABLE_DATADOG
    - role: splunkforwarder
      when: COMMON_ENABLE_SPLUNKFORWARDER
19 20
    - role: newrelic_infrastructure
      when: COMMON_ENABLE_NEWRELIC_INFRASTRUCTURE
21 22 23
    - role: datadog-uninstall
      when: not COMMON_ENABLE_DATADOG