Add playbooks for all tiers. And global distributed playbook.

This commit is contained in:
2018-10-31 15:15:06 +13:00
parent 8d6ab4b4ed
commit fb04430351
5 changed files with 45 additions and 0 deletions

8
deployment-server.yml Normal file
View File

@@ -0,0 +1,8 @@
---
- name: Upgrade the Deployment Server
hosts: deployment-servers
become: true
handlers:
- import_tasks: handlers/splunk.yml
tasks:
- import_tasks: tasks/common.yml

13
distributed.yml Normal file
View File

@@ -0,0 +1,13 @@
---
# Upgrade License Master
- import_playbook: cluster-master.yml
# Upgrade Deployment Server
- import_playbook: deployment-server.yml
# Upgrade Searchhead Deployer/s
- import_playbook: searchhead-deployer.yml
# Heavyweight Forwarder/s
- import_playbook: heavyweight-forwarders.yml
# Upgrade the Searchead Tier
- import_playbook: searchheads.yml
# Upgrade the Indexer Tier
- import_playbook: indexers.yml

View File

@@ -0,0 +1,8 @@
---
- name: Upgrade the Heavyweights
hosts: heavyweight-forwarders
become: true
handlers:
- import_tasks: handlers/splunk.yml
tasks:
- import_tasks: tasks/common.yml

8
indexers.yml Normal file
View File

@@ -0,0 +1,8 @@
---
- name: Upgrade the Indexer Cluster
hosts: indexers
become: true
handlers:
- import_tasks: handlers/splunk.yml
tasks:
- import_tasks: tasks/common.yml

8
searchheads.yml Normal file
View File

@@ -0,0 +1,8 @@
---
- name: Upgrade the Searchhead Cluster
hosts: searchheads
become: true
handlers:
- import_tasks: handlers/splunk.yml
tasks:
- import_tasks: tasks/common.yml