Remove use of ansible_fqdn

The ansible_fqdn fact is no longer passed into the individual roles
in order to speed up deployments [0].  This changes alters the role
to use ansible_facts['fqdn'] which is the same.

* Updated tox.ini to include requirements.txt as well
* Updated tox.ini to skip no-changed-when error

[0]: https://bugs.launchpad.net/tripleo/+bug/1915761

Related-Bug: 1915761
Change-Id: I1314b0e39c4a36740c8ef0c867bbc6fe60409289
(cherry picked from commit 26da379c3a)
This commit is contained in:
Dave Wilde (d34dh0r53) 2021-06-02 12:40:42 -05:00 committed by David Wilde
parent b3981c6f8b
commit 6ebc8f4440
2 changed files with 6 additions and 5 deletions

View File

@ -28,15 +28,15 @@
- name: set client facts for fqdn - name: set client facts for fqdn
set_fact: set_fact:
client_name: "{{ ansible_fqdn }}" client_name: "{{ ansible_facts['fqdn'] }}"
client_reg_opt: "-hostname" client_reg_opt: "-hostname"
client_host: "{{ ansible_fqdn }}" client_host: "{{ ansible_facts['fqdn'] }}"
client_cert_cn: "{{ inventory_hostname }}" client_cert_cn: "{{ inventory_hostname }}"
when: lunasa_client_ip is undefined when: lunasa_client_ip is undefined
- name: set client facts for IP override - name: set client facts for IP override
set_fact: set_fact:
client_name: "{{ ansible_fqdn }}" client_name: "{{ ansible_facts['fqdn'] }}"
client_reg_opt: "-ip" client_reg_opt: "-ip"
client_host: "{{ lunasa_client_ip }}" client_host: "{{ lunasa_client_ip }}"
client_cert_cn: "{{ lunasa_client_ip }}" client_cert_cn: "{{ lunasa_client_ip }}"

View File

@ -5,7 +5,8 @@ skipsdist = true
[testenv] [testenv]
basepython = python3 basepython = python3
deps = -r{toxinidir}/test-requirements.txt deps = -r{toxinidir}/requirements.txt
-r{toxinidir}/test-requirements.txt
[testenv:linters] [testenv:linters]
# We ignore 106 because the role name is inferred from the directory name as # We ignore 106 because the role name is inferred from the directory name as
@ -13,4 +14,4 @@ deps = -r{toxinidir}/test-requirements.txt
# (see setup.cfg). We would need to rename the repository to fix this without # (see setup.cfg). We would need to rename the repository to fix this without
# ignoring it. # ignoring it.
# TODO(redrobot): Don't ignore 301 # TODO(redrobot): Don't ignore 301
commands = ansible-lint -x 106,301 {toxinidir} commands = ansible-lint -x 106,301,no-changed-when {toxinidir}