fb7aed401b
This change breaks out the basic install and setup playbooks into different playbooks. This is done to ensure an operator can easily rerun any part of the playbook as they upgrade, change, or modify a setup over the lifetime of the deployment. Change-Id: I66c53fcb21880c950ea3fee202e7d2224dfdff3a Signed-off-by: Kevin Carter <kevin.carter@rackspace.com>
46 lines
1.4 KiB
YAML
46 lines
1.4 KiB
YAML
---
|
|
# Copyright 2018, Rackspace US, Inc.
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
|
|
- name: Load Journalbeat Dashboards
|
|
hosts: hosts[0]
|
|
gather_facts: false
|
|
vars_files:
|
|
- vars/variables.yml
|
|
|
|
pre_tasks:
|
|
# NOTE(cloudnull): This task is broken at this point due to missing
|
|
# configuration. Once the following issue
|
|
# [ https://github.com/mheese/journalbeat/issues/136 ] is
|
|
# resolved, this should be removed.
|
|
- name: exit playbook
|
|
meta: end_play
|
|
|
|
- include_tasks: common_task_data_node_hosts.yml
|
|
|
|
tasks:
|
|
- name: Load templates
|
|
shell: >-
|
|
/usr/local/bin/journalbeat -setup
|
|
-E 'output.logstash.enabled=false'
|
|
-E 'output.elasticsearch.hosts={{ coordination_nodes | to_json }}'
|
|
-e -v
|
|
register: templates
|
|
until: templates is success
|
|
retries: 3
|
|
delay: 2
|
|
|
|
tags:
|
|
- beat-setup
|