You've already forked splunk-upgrade
Add playbooks for all tiers. And global distributed playbook.
This commit is contained in:
8
deployment-server.yml
Normal file
8
deployment-server.yml
Normal 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
13
distributed.yml
Normal 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
|
||||
8
heavyweight-forwarders.yml
Normal file
8
heavyweight-forwarders.yml
Normal 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
8
indexers.yml
Normal 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
8
searchheads.yml
Normal 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
|
||||
Reference in New Issue
Block a user