From 4e0c30ed1614f58f338b275b67b93e4145544ab4 Mon Sep 17 00:00:00 2001 From: Kevin Carter Date: Tue, 1 May 2018 19:00:55 -0500 Subject: [PATCH] Add documentation and tooling for legacy environments A deployer may want to run these tools within a legacy environment (running Ansible <2.4) but will find it the deployment of these playbooks impossible to due to the use of new-ish task syntax, roles, and modules. This change gives deployers options when running within legacy environments by providing everything needed to deploy these playbooks using embeded ansible. Change-Id: Ic99b93017129321b2eb8b773a77f7fa478cc8dc7 Signed-off-by: Kevin Carter --- elk_metrics_6x/bootstrap-embeded-ansible.sh | 46 +++++++++++++++ elk_metrics_6x/readme.rst | 65 ++++++++++++--------- elk_metrics_6x/vars/variables.yml | 64 ++++++++++---------- 3 files changed, 116 insertions(+), 59 deletions(-) create mode 100644 elk_metrics_6x/bootstrap-embeded-ansible.sh diff --git a/elk_metrics_6x/bootstrap-embeded-ansible.sh b/elk_metrics_6x/bootstrap-embeded-ansible.sh new file mode 100644 index 00000000..6192d439 --- /dev/null +++ b/elk_metrics_6x/bootstrap-embeded-ansible.sh @@ -0,0 +1,46 @@ +#!/usr/bin/env bash +# 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. + +if [[ ! -f "/opt/ansible25/bin/ansible" ]]; then + apt-get update + apt-get -y install python3-virtualenv || apt-get -y install python-virtualenv + virtualenv --python=/usr/bin/python3 /opt/ansible25 || virtualenv --python=/usr/bin/python2 /opt/ansible25 + /opt/ansible25/bin/pip install --upgrade ansible==2.5.2.0 --isolated +fi + +if [[ ! -d "/opt/ansible25/repositories/ansible-config_template" ]]; then + mkdir -p /opt/ansible25/repositories + git clone https://github.com/openstack/ansible-config_template /opt/ansible25/repositories/ansible-config_template +fi + +if [[ ! -d "/opt/ansible25/repositories/roles/systemd_service" ]]; then + mkdir -p /opt/ansible25/repositories + git clone https://github.com/openstack/ansible-role-systemd_service /opt/ansible25/repositories/roles/systemd_service +fi + +if [[ -f "/etc/openstack_deploy/openstack_inventory.json" ]]; then + mkdir -p /opt/ansible25/inventrory + cat > /opt/ansible25/inventrory/openstack_inventory.sh <