Skip to content

Commit c02055e

Browse files
committed
Add example playbook to deploy an indexer cluster.
1 parent 4726860 commit c02055e

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

playbooks/splunk_idxc_deploy.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# Example playbook to install Splunk and configure a basic indexer cluster
2+
# Ensure that the following vars are configured: ansible_user, ansible_ssh_private_key_file, splunk_uri_lm, and splunk_admin_password
3+
- hosts:
4+
- clustermanager
5+
- indexers
6+
roles:
7+
- ../roles/splunk
8+
vars:
9+
- deployment_task: check_splunk.yml
10+
11+
- hosts:
12+
- clustermanager
13+
roles:
14+
- ../roles/splunk
15+
vars:
16+
- deployment_task: configure_idxc_manager.yml
17+
18+
- hosts:
19+
- indexers
20+
roles:
21+
- ../roles/splunk
22+
vars:
23+
- deployment_task: configure_idxc_member.yml

0 commit comments

Comments
 (0)