From 6edaa8d4d686f874dc63d75e5db4478e9f76e09d Mon Sep 17 00:00:00 2001 From: Felipe Monteiro Date: Sat, 21 Jul 2018 15:43:05 -0400 Subject: [PATCH] Remove substitution_sources from Deckhand layering This patch set removes substitution_sources kwarg from the Deckhand layering call as it is deprecated [0] because all concrete documents will simply be used by default as the substitution source documents. [0] https://github.com/openstack/airship-deckhand/blob/1583b7890294532c89213f66a61153df6f9a1634/deckhand/engine/layering.py#L480 Change-Id: I934c8d5e7f2fa2a84dcdba592bd515f889337f79 --- promenade/config.py | 1 - 1 file changed, 1 deletion(-) diff --git a/promenade/config.py b/promenade/config.py index cc7bd52c..c25fe296 100644 --- a/promenade/config.py +++ b/promenade/config.py @@ -30,7 +30,6 @@ class Configuration: try: deckhand_eng = layering.DocumentLayering( documents, - substitution_sources=documents, fail_on_missing_sub_src=not allow_missing_substitutions) documents = [dict(d) for d in deckhand_eng.render()] except dh_errors.DeckhandException as e: