
Since ansible-core 2.10 it is recommended to use modules via FQCN In order to align with recommendation, we perform migration by applying suggestions made by `ansible-lint --fix=fqcn` Change-Id: Ibf7bac98d8ca25801a2abd0f4b195d6a248e6589
60 lines
2.5 KiB
YAML
60 lines
2.5 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.
|
|
|
|
- name: Generate hosts file records
|
|
run_once: true
|
|
ansible.builtin.set_fact:
|
|
_etc_hosts_content: |-
|
|
{% set records = [] %}
|
|
{% set _groups = groups['all'] %}
|
|
{% set _ = _groups.remove('localhost') %}
|
|
{% for item in _groups %}
|
|
{% set record = [] %}
|
|
{% set _target_rfc_name = item|replace('_', '-') %}
|
|
{% set _ans_hostname = hostvars[item]['ansible_facts']['hostname'] | default(_target_rfc_name) %}
|
|
{% set _ = record.append(hostvars[item]['ansible_host'] | default('127.0.0.1')) %}
|
|
{% set _ = record.append(_ans_hostname ~ '.' ~ openstack_domain) %}
|
|
{% set _ = record.append(_target_rfc_name) %}
|
|
{% if (_ans_hostname != _target_rfc_name) and (_target_rfc_name != item) %}
|
|
{% set _ = record.append(item) %}
|
|
{% set _ = record.append(_ans_hostname) %}
|
|
{% elif (_ans_hostname != _target_rfc_name) and (_target_rfc_name == item) %}
|
|
{% set _ = record.append(_ans_hostname) %}
|
|
{% elif (_ans_hostname == _target_rfc_name) and (_target_rfc_name != item) %}
|
|
{% set _ = record.append(item) %}
|
|
{% endif %}
|
|
{% set _ = records.append(record | join(' ')) %}
|
|
{% endfor %}
|
|
{{ records }}
|
|
|
|
- name: Update hosts file
|
|
ansible.builtin.blockinfile:
|
|
dest: /etc/hosts
|
|
block: "{{ (_etc_hosts_content + openstack_host_custom_hosts_records) | join('\n') }}"
|
|
marker: "### {mark} OPENSTACK-ANSIBLE MANAGED BLOCK ###"
|
|
when:
|
|
- openstack_host_manage_hosts_file | bool
|
|
|
|
- name: Update hosts file on deploy host
|
|
ansible.builtin.blockinfile:
|
|
dest: /etc/hosts
|
|
block: "{{ (_etc_hosts_content + openstack_host_custom_hosts_records) | join('\n') }}"
|
|
marker: "### {mark} OPENSTACK-ANSIBLE {{ lookup('env', 'OSA_CONFIG_DIR') }} MANAGED BLOCK ###"
|
|
run_once: true
|
|
delegate_to: localhost
|
|
become: true
|
|
when:
|
|
- openstack_host_manage_deploy_hosts_file | bool
|