From 7236b35c79c76fef75f321b86a41624a585bf047 Mon Sep 17 00:00:00 2001 From: Emilien Macchi Date: Wed, 13 Jun 2018 11:39:50 -0700 Subject: [PATCH] undercloud: deploy tripleo-validations when needed When enabled, deploy tripleo-validations service to have parity with instack-undercloud. It'll run Puppet and install the rpm + user useful to run TripleO Validations on the undercloud. Depends-On: Ida09f92010e31d952edd82b42a7fc20451537d42 Change-Id: Id6822ee8297943145865fc468d9c7a7c8fbb64c0 --- tripleoclient/v1/undercloud_config.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tripleoclient/v1/undercloud_config.py b/tripleoclient/v1/undercloud_config.py index badc636d7..12c1d8c74 100644 --- a/tripleoclient/v1/undercloud_config.py +++ b/tripleoclient/v1/undercloud_config.py @@ -551,6 +551,8 @@ def prepare_undercloud_deploy(upgrade=False, no_validations=False, if CONF.get('enable_validations') and not no_validations: undercloud_preflight.check() + deploy_args += ['-e', os.path.join( + tht_templates, "environments/tripleo-validations.yaml")] if verbose_level > 1: deploy_args.append('--debug')