From fcebac05d8158ccacc844b2135176ac5caefb725 Mon Sep 17 00:00:00 2001 From: guisea Date: Sun, 14 Oct 2018 21:05:47 +1300 Subject: [PATCH] Import handlers and tasks from common.yml --- cluster-master.yml | 8 ++++++++ searchhead-deployer.yml | 8 ++++++++ 2 files changed, 16 insertions(+) create mode 100644 cluster-master.yml create mode 100644 searchhead-deployer.yml diff --git a/cluster-master.yml b/cluster-master.yml new file mode 100644 index 0000000..b640ce3 --- /dev/null +++ b/cluster-master.yml @@ -0,0 +1,8 @@ +--- +- name: Upgrade the index_cluster_manager + hosts: index-cluster-masters + become: true + handlers: + - include_tasks: handlers/splunk.yml + tasks: + - import_tasks: tasks/common.yml diff --git a/searchhead-deployer.yml b/searchhead-deployer.yml new file mode 100644 index 0000000..f69b6b0 --- /dev/null +++ b/searchhead-deployer.yml @@ -0,0 +1,8 @@ +--- +- name: Upgrade the searchhead deployer + hosts: search-head-cluster-managers + become: true + handlers: + - include_tasks: handlers/splunk.yml + tasks: + - import_tasks: tasks/common.yml