From 0de9ea84ff7a144c89c5a6cee0c68dabb571583a Mon Sep 17 00:00:00 2001 From: "Dave Wilde (d34dh0r53)" Date: Wed, 14 Apr 2021 15:21:21 -0500 Subject: [PATCH] [Train Only] Ensure novajoin code is setting ansible_fqdn Novajoin tls-e code is still available in train and is affected by the same removal of the fact passing as [1]. This uses ansible_facts['fqdn'] as the ansible_fqdn for the tripleo-ipa registration play. [1]: https://review.opendev.org/c/openstack/tripleo-heat-templates/+/785909 Related-Bug: 1915761 Related-Bug: 1923248 Change-Id: I5b1514b4ba9bb22bcef63e74b0400cd9332516ca --- deployment/ipa/ipaclient-baremetal-ansible.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/deployment/ipa/ipaclient-baremetal-ansible.yaml b/deployment/ipa/ipaclient-baremetal-ansible.yaml index a696c3931b..568161b01f 100644 --- a/deployment/ipa/ipaclient-baremetal-ansible.yaml +++ b/deployment/ipa/ipaclient-baremetal-ansible.yaml @@ -212,6 +212,7 @@ outputs: tripleo_ipa_delegate_server: "{{ item }}" tripleo_ipa_base_server_fqdn: "{{ hostvars[item]['fqdn_canonical'] }}" tripleo_ipa_server_metadata: "{{ hostvars[item]['service_metadata_settings'] | to_json }}" + ansible_fqdn: "{{ ansible_facts['fqdn'] }}" loop: "{{ groups.certmonger_user }}" environment: IPA_USER: "nova/{{ ansible_facts['fqdn'] }}"