Execution
Date 08 Dec 2025 13:27:39 +0000
Duration 00:05:33.94
Controller aio1.openstack.local
User root
Versions
Ansible 2.18.6
ara 1.7.4 / 1.7.4
Python 3.12.3
Summary
2 Hosts
316 Tasks
313 Results
18 Plays
136 Files
0 Records

File: /home/zuul/src/opendev.org/openstack/openstack-ansible-openstack_hosts/tasks/openstack_update_hosts_file.yml

---
# 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