From d0f80fd8bc2954a7fb3fbef405d81ecf1574df5e Mon Sep 17 00:00:00 2001 From: Bartek Grzybowski Date: Thu, 8 Apr 2021 16:41:16 +0200 Subject: [MOLECULE 3.3.0] Update converge playbook file names In 3.x.x version family of Molecule the 'playbook.yml' file for 'converge' action has changed to 'converge.yml'. Ref.: https://github.com/ansible-community/molecule/issues/2560 Change-Id: I8710ebd5710237be138f2aff8943d6c949058dbd Issue-ID: OOM-2722 Signed-off-by: Bartek Grzybowski --- .../test/play-infrastructure/molecule/default/converge.yml | 11 +++++++++++ .../test/play-infrastructure/molecule/default/playbook.yml | 11 ----------- 2 files changed, 11 insertions(+), 11 deletions(-) create mode 100644 ansible/test/play-infrastructure/molecule/default/converge.yml delete mode 100644 ansible/test/play-infrastructure/molecule/default/playbook.yml (limited to 'ansible/test/play-infrastructure/molecule') diff --git a/ansible/test/play-infrastructure/molecule/default/converge.yml b/ansible/test/play-infrastructure/molecule/default/converge.yml new file mode 100644 index 00000000..26b3c15d --- /dev/null +++ b/ansible/test/play-infrastructure/molecule/default/converge.yml @@ -0,0 +1,11 @@ +--- +- name: Common setup for all hosts + hosts: all + tasks: + - name: Set cluster_ip variable + set_fact: + cluster_ip: "{{ ansible_default_ipv4.address }}" + - name: Include variables + include_vars: vars.yml + +- import_playbook: ../../../../infrastructure.yml diff --git a/ansible/test/play-infrastructure/molecule/default/playbook.yml b/ansible/test/play-infrastructure/molecule/default/playbook.yml deleted file mode 100644 index 26b3c15d..00000000 --- a/ansible/test/play-infrastructure/molecule/default/playbook.yml +++ /dev/null @@ -1,11 +0,0 @@ ---- -- name: Common setup for all hosts - hosts: all - tasks: - - name: Set cluster_ip variable - set_fact: - cluster_ip: "{{ ansible_default_ipv4.address }}" - - name: Include variables - include_vars: vars.yml - -- import_playbook: ../../../../infrastructure.yml -- cgit 1.2.3-korg