You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
603 B
19 lines
603 B
---
|
|
- name: Run multisite provisioning
|
|
hosts: localhost
|
|
gather_facts: true
|
|
environment: "{{ ansible_environment | default({}) }}"
|
|
tasks:
|
|
# These should only be run for the three roles that currently
|
|
# have multisite defined; cluster master, search head, and indexer
|
|
- name: Run role specific multisite configuration
|
|
include_role:
|
|
name: "{{ splunk.role }}"
|
|
tasks_from: setup_multisite.yml
|
|
when:
|
|
- splunk.role is defined
|
|
vars:
|
|
- splunk_install: false
|
|
- splunk_upgrade: false
|
|
- first_run: false
|