From ee883aa9f2c9cd87d20f5269a0edac0be637e9f1 Mon Sep 17 00:00:00 2001 From: Andrew Schoen Date: Wed, 31 Oct 2018 10:25:26 -0500 Subject: [PATCH] validate: do not validate ceph_repository if deploying containers Fixes: https://bugzilla.redhat.com/show_bug.cgi?id=1630975 Signed-off-by: Andrew Schoen (cherry picked from commit 9cd8ecf0cc74e5edfe54cbb5cebf1d72ca3bab8a) --- plugins/actions/validate.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/actions/validate.py b/plugins/actions/validate.py index e6e40f9fe..552c55b1c 100644 --- a/plugins/actions/validate.py +++ b/plugins/actions/validate.py @@ -48,7 +48,7 @@ class ActionModule(ActionBase): notario_store["containerized_deployment"] = host_vars["containerized_deployment"] notario.validate(host_vars, install_options, defined_keys=True) - if host_vars["ceph_origin"] == "repository": + if host_vars["ceph_origin"] == "repository" and not host_vars["containerized_deployment"]: notario.validate(host_vars, ceph_origin_repository, defined_keys=True) if host_vars["ceph_repository"] == "community": -- 2.39.5