1d290828b9
The changes created here allow for upgrades to take place without impacting cluster availability in cases where a a service may be dependent on a non-compliant hostname(s). Upgrade playbook has been added for ensuring hostname aliases are correctly created. Specific entries for nova, heat, cinder neutron, galera and rabbitmq have been added to ensure all nodes are able to contact all other nodes using a potentially non-compliant hostname entry. To make setting the domain name easy across the cluster a new global variable has been created ``openstack_domain``. This variable has a default value of "openstack.local". Because the initial release of Mitaka (13.0.0) did not contain the RFC1034/5 updates these changes are needed to guarentee clusters deployed on our initial release are upgradable to Newton (14.0.0). Partial-Bug: #1577245 Partial-Bug: #1586148 Related-Change-Id: Ib1e3b6f02758906e3ec7ab35737c1a58fcbca216 Change-Id: I6901409c1dc5ac8ff4f0af988132b5ac71f6379e Signed-off-by: Kevin Carter <kevin.carter@rackspace.com>
146 lines
5.7 KiB
YAML
146 lines
5.7 KiB
YAML
---
|
|
# Copyright 2016, 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: Set hostname alias for local lookup compatibility
|
|
hosts: all
|
|
gather_facts: true
|
|
tasks:
|
|
- name: Update Alias hostnames
|
|
lineinfile:
|
|
dest: /etc/hosts
|
|
insertafter: "^127.0.0.1"
|
|
regexp: "^127.0.1.1"
|
|
line: "127.0.1.1 {{ rfc_1034_1035_name }}.{{ domain_name }} {{ rfc_1034_1035_name }} {{ inventory_hostname }} {{ ansible_hostname }}"
|
|
state: present
|
|
register: result1
|
|
when:
|
|
- rfc_1034_1035_name != inventory_hostname
|
|
- rfc_1034_1035_name != ansible_hostname
|
|
- name: Update Alias hostnames
|
|
lineinfile:
|
|
dest: /etc/hosts
|
|
insertafter: "^127.0.0.1"
|
|
regexp: "^127.0.1.1"
|
|
line: "127.0.1.1 {{ rfc_1034_1035_name }}.{{ domain_name }} {{ rfc_1034_1035_name }} {{ ansible_hostname }}"
|
|
state: present
|
|
register: result2
|
|
when:
|
|
- rfc_1034_1035_name == inventory_hostname
|
|
- rfc_1034_1035_name != ansible_hostname
|
|
- name: Update Alias hostnames
|
|
lineinfile:
|
|
dest: /etc/hosts
|
|
insertafter: "^127.0.0.1"
|
|
regexp: "^127.0.1.1"
|
|
line: "127.0.1.1 {{ rfc_1034_1035_name }}.{{ domain_name }} {{ rfc_1034_1035_name }} {{ inventory_hostname }}"
|
|
state: present
|
|
when:
|
|
- result1 | skipped
|
|
- result2 | skipped
|
|
vars:
|
|
rfc_1034_1035_name: "{{ inventory_hostname | replace('_', '-') }}"
|
|
domain_name: "{{ openstack_domain|default('openstack.local') }}"
|
|
|
|
- name: Set hostnames alias for RabbitMQ lookup compatibility
|
|
hosts: rabbitmq_all
|
|
tasks:
|
|
- name: Update hosts file from ansible inventory
|
|
lineinfile:
|
|
dest: /etc/hosts
|
|
regexp: "^{{ hostvars[item]['ansible_ssh_host'] }}"
|
|
line: "{{ hostvars[item]['ansible_ssh_host'] }} {{ rfc_1034_1035_name }}.{{ domain_name }} {{ rfc_1034_1035_name }} {{ item }}"
|
|
state: present
|
|
when: item != inventory_hostname
|
|
with_items: "{{ play_hosts }}"
|
|
vars:
|
|
rfc_1034_1035_name: "{{ item | replace('_', '-') }}"
|
|
domain_name: "{{ openstack_domain|default('openstack.local') }}"
|
|
|
|
- name: Set hostnames alias for MariaDB lookup compatibility
|
|
hosts: galera_all
|
|
tasks:
|
|
- name: Update hosts file from ansible inventory
|
|
lineinfile:
|
|
dest: /etc/hosts
|
|
regexp: "^{{ hostvars[item]['ansible_ssh_host'] }}"
|
|
line: "{{ hostvars[item]['ansible_ssh_host'] }} {{ rfc_1034_1035_name }}.{{ domain_name }} {{ rfc_1034_1035_name }} {{ item }}"
|
|
state: present
|
|
when: item != inventory_hostname
|
|
with_items: "{{ play_hosts }}"
|
|
vars:
|
|
rfc_1034_1035_name: "{{ item | replace('_', '-') }}"
|
|
domain_name: "{{ openstack_domain|default('openstack.local') }}"
|
|
|
|
- name: Set hostnames alias for Neutron Agent lookup compatibility
|
|
hosts: neutron_all:!nova_compute
|
|
tasks:
|
|
- name: Update hosts file from ansible inventory
|
|
lineinfile:
|
|
dest: /etc/hosts
|
|
regexp: "^{{ hostvars[item]['ansible_ssh_host'] }}"
|
|
line: "{{ hostvars[item]['ansible_ssh_host'] }} {{ rfc_1034_1035_name }}.{{ domain_name }} {{ rfc_1034_1035_name }} {{ item }}"
|
|
state: present
|
|
when: item != inventory_hostname
|
|
with_items: "{{ play_hosts }}"
|
|
vars:
|
|
rfc_1034_1035_name: "{{ item | replace('_', '-') }}"
|
|
domain_name: "{{ openstack_domain|default('openstack.local') }}"
|
|
|
|
- name: Set hostnames alias for Cinder lookup compatibility
|
|
hosts: cinder_all
|
|
tasks:
|
|
- name: Update hosts file from ansible inventory
|
|
lineinfile:
|
|
dest: /etc/hosts
|
|
regexp: "^{{ hostvars[item]['ansible_ssh_host'] }}"
|
|
line: "{{ hostvars[item]['ansible_ssh_host'] }} {{ rfc_1034_1035_name }}.{{ domain_name }} {{ rfc_1034_1035_name }} {{ item }}"
|
|
state: present
|
|
when: item != inventory_hostname
|
|
with_items: "{{ play_hosts }}"
|
|
vars:
|
|
rfc_1034_1035_name: "{{ item | replace('_', '-') }}"
|
|
domain_name: "{{ openstack_domain|default('openstack.local') }}"
|
|
|
|
- name: Set hostnames alias for Heat lookup compatibility
|
|
hosts: heat_all
|
|
tasks:
|
|
- name: Update hosts file from ansible inventory
|
|
lineinfile:
|
|
dest: /etc/hosts
|
|
regexp: "^{{ hostvars[item]['ansible_ssh_host'] }}"
|
|
line: "{{ hostvars[item]['ansible_ssh_host'] }} {{ rfc_1034_1035_name }}.{{ domain_name }} {{ rfc_1034_1035_name }} {{ item }}"
|
|
state: present
|
|
when: item != inventory_hostname
|
|
with_items: "{{ play_hosts }}"
|
|
vars:
|
|
rfc_1034_1035_name: "{{ item | replace('_', '-') }}"
|
|
domain_name: "{{ openstack_domain|default('openstack.local') }}"
|
|
|
|
- name: Set hostnames alias for Nova Sevice lookup compatibility
|
|
hosts: nova_all:!nova_compute
|
|
tasks:
|
|
- name: Update hosts file from ansible inventory
|
|
lineinfile:
|
|
dest: /etc/hosts
|
|
regexp: "^{{ hostvars[item]['ansible_ssh_host'] }}"
|
|
line: "{{ hostvars[item]['ansible_ssh_host'] }} {{ rfc_1034_1035_name }}.{{ domain_name }} {{ rfc_1034_1035_name }} {{ item }}"
|
|
state: present
|
|
when:
|
|
- item != inventory_hostname
|
|
with_items: "{{ play_hosts }}"
|
|
vars:
|
|
rfc_1034_1035_name: "{{ item | replace('_', '-') }}"
|
|
domain_name: "{{ openstack_domain|default('openstack.local') }}"
|