Merge "Fix external_validate for Heat resources"

This commit is contained in:
Zuul 2020-04-09 07:38:59 +00:00 committed by Gerrit Code Review
commit 2ef9f4bf37
3 changed files with 10 additions and 0 deletions

View File

@ -73,6 +73,8 @@ class RemoteStack(resource.Resource):
"""
default_client_name = 'heat'
entity = 'stacks'
PROPERTIES = (
CONTEXT, TEMPLATE, TIMEOUT, PARAMETERS,
) = (

View File

@ -44,6 +44,10 @@ class SoftwareConfig(resource.Resource):
support_status = support.SupportStatus(version='2014.1')
default_client_name = 'heat'
entity = 'software_configs'
PROPERTIES = (
GROUP, CONFIG,
OPTIONS,

View File

@ -72,6 +72,10 @@ class SoftwareDeployment(signal_responder.SignalResponder):
support_status = support.SupportStatus(version='2014.1')
default_client_name = 'heat'
entity = 'software_deployments'
PROPERTIES = (
CONFIG, SERVER, INPUT_VALUES,
DEPLOY_ACTIONS, NAME, SIGNAL_TRANSPORT