From 871f26566a6f087f940a4a59ae6a630cff10e6b6 Mon Sep 17 00:00:00 2001 From: Francesco Pantano Date: Wed, 3 Mar 2021 14:48:38 +0100 Subject: [PATCH] Add delegate_fact_hosts: false on ci scenarios This change adds delegate_facts_hosts: false to the existing ceph-ansible scenarios. This was introduced due to the --limit option to avoid gathering facts, but since we're running on standalone and the same node is present in all groups, having that variable set to True (which is the ceph-ansible default) makes no sense. Depends-On: https://review.opendev.org/c/openstack/tripleo-quickstart/+/779315 Change-Id: I44433731f73882f62591e8067743beec4d423ef7 (cherry picked from commit c0e8697550bba624bd935d5ad01135a1d10094e9) --- ci/environments/scenario001-standalone.yaml | 1 + ci/environments/scenario004-standalone.yaml | 1 + 2 files changed, 2 insertions(+) diff --git a/ci/environments/scenario001-standalone.yaml b/ci/environments/scenario001-standalone.yaml index ab49ba8c2f..3193dba0bf 100644 --- a/ci/environments/scenario001-standalone.yaml +++ b/ci/environments/scenario001-standalone.yaml @@ -82,6 +82,7 @@ parameter_defaults: mon_host_v1: { 'enabled': False } handler_health_mon_check_retries: 10 handler_health_mon_check_delay: 20 + delegate_fact_host: false #NOTE: These ID's and keys should be regenerated for # a production deployment. What is here is suitable for # developer and CI testing only. diff --git a/ci/environments/scenario004-standalone.yaml b/ci/environments/scenario004-standalone.yaml index 075c537bb0..d895d0e95c 100644 --- a/ci/environments/scenario004-standalone.yaml +++ b/ci/environments/scenario004-standalone.yaml @@ -54,6 +54,7 @@ parameter_defaults: mon_host_v1: { 'enabled': False } handler_health_mon_check_retries: 10 handler_health_mon_check_delay: 20 + delegate_fact_host: false #NOTE: These ID's and keys should be regenerated for # a production deployment. What is here is suitable for # developer and CI testing only.