ccbe248b5d
Related-Bug: 1687447 Change-Id: I13a5d6d0153174959196b6a35f3c79826a15d69c Signed-off-by: Kevin Carter <kevin.carter@rackspace.com>
76 lines
2.1 KiB
YAML
76 lines
2.1 KiB
YAML
---
|
|
# Copyright 2014, 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.
|
|
|
|
# This should be revised in Kilo
|
|
# kilo_revision: true
|
|
|
|
- name: "Drop AT&T neutron ha tool"
|
|
template:
|
|
src: "neutron-ha-tool.py.j2"
|
|
dest: "/opt/neutron-ha-tool.py"
|
|
owner: "root"
|
|
group: "root"
|
|
mode: "0755"
|
|
tags:
|
|
- neutron-install
|
|
when:
|
|
- neutron_legacy_ha_tool_enabled | bool
|
|
|
|
- name: Convert the hostname to an int
|
|
name2int:
|
|
name: "{{ inventory_hostname }}"
|
|
register: hashed_name
|
|
when:
|
|
- neutron_legacy_ha_tool_enabled | bool
|
|
|
|
# These are used in the Neutron HA Cron job script, and processed in the template.
|
|
- name: Creating Job Facts
|
|
set_fact:
|
|
do_job: ". /root/openrc && /opt/neutron-ha-tool.py {% if keystone_service_internaluri_insecure | bool %}--insecure {% endif %}--l3-agent-migrate"
|
|
sleep_time: "{{ hashed_name.int_value }}"
|
|
when:
|
|
- neutron_legacy_ha_tool_enabled | bool
|
|
|
|
- name: "Drop Neutron HA job script"
|
|
template:
|
|
src: "neutron_ha_tool.sh.j2"
|
|
dest: "/opt/neutron-ha-tool.sh"
|
|
owner: "root"
|
|
group: "root"
|
|
mode: "0755"
|
|
when:
|
|
- neutron_legacy_ha_tool_enabled | bool
|
|
|
|
- name: Create Neutron HA
|
|
cron:
|
|
name: "neutron-ha-tool"
|
|
minute: "*/1"
|
|
day: "*"
|
|
hour: "*"
|
|
month: "*"
|
|
state: "{{ (neutron_legacy_ha_tool_enabled | bool) | ternary('present', 'absent') }}"
|
|
job: "/opt/neutron-ha-tool.sh"
|
|
user: root
|
|
cron_file: "neutron-ha-tool"
|
|
|
|
- name: "Remove AT&T neutron ha tool when disabled"
|
|
file:
|
|
path: "{{ item }}"
|
|
state: "absent"
|
|
with_items:
|
|
- "/opt/neutron-ha-tool.py"
|
|
- "/opt/neutron-ha-tool.sh"
|
|
when:
|
|
- not neutron_legacy_ha_tool_enabled | bool |