From c333cf8050ec655152548467cbc2902ec16c5084 Mon Sep 17 00:00:00 2001 From: James Slagle Date: Mon, 16 Apr 2018 17:50:31 -0400 Subject: [PATCH] Environment to disable workflow_tasks Adds an optional environment that can be used to disable workflow_tasks by mapping OS::Mistral resources to None. This environment can be used by CI so that the updated ceph jobs (I757be222143e41392b474d6b20c7a7b7df4537de) can be converted to external_deploy_tasks, but the existing workflow_tasks can be temporarily disabled until they are removed from the templates. Change-Id: Ib39313712ea03e5562e7b19875c178e9c8dfef54 --- environments/disable-workflow-tasks.yaml | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 environments/disable-workflow-tasks.yaml diff --git a/environments/disable-workflow-tasks.yaml b/environments/disable-workflow-tasks.yaml new file mode 100644 index 0000000000..cd4efbbf89 --- /dev/null +++ b/environments/disable-workflow-tasks.yaml @@ -0,0 +1,6 @@ +# This environment can be used to optionally disable the mistral workflow_tasks +# by mapping OS::Mistral resources to None. + +resource_registry: + OS::Mistral::Workflow: OS::Heat::None + OS::Mistral::ExternalResource: OS::Heat::None