diff options
author | James Slagle <jslagle@redhat.com> | 2017-06-16 11:13:25 -0400 |
---|---|---|
committer | James Slagle <jslagle@redhat.com> | 2017-06-16 11:13:25 -0400 |
commit | d6c0979eb3de79b8c3a79ea5798498f0241eb32d (patch) | |
tree | 808607f65fe92d9e57b20c62b48159123818da0b /extraconfig/tasks/ssh | |
parent | 0354927a1143dd766cab4b9a88d4af84e404d6d9 (diff) |
Blacklist support for ExtraConfig
Commit I46941e54a476c7cc8645cd1aff391c9c6c5434de added support for
blacklisting servers from triggered Heat deployments.
This commit adds that functionality to the remaining Deployments in
tripleo-heat-templates for the ExtraConfig interfaces.
Since we can not (should not) change the interface to ExtraConfig, Heat
conditions are used on the actual <role>ExtraConfigPre and
NodeExtraConfig resources instead of using the actions approach on
Deployments.
Change-Id: I38fdb50d1d966a6c3651980c52298317fa3bece4
Diffstat (limited to 'extraconfig/tasks/ssh')
-rw-r--r-- | extraconfig/tasks/ssh/host_public_key.yaml | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/extraconfig/tasks/ssh/host_public_key.yaml b/extraconfig/tasks/ssh/host_public_key.yaml index e4ba0cc4..02fdbf1c 100644 --- a/extraconfig/tasks/ssh/host_public_key.yaml +++ b/extraconfig/tasks/ssh/host_public_key.yaml @@ -7,6 +7,13 @@ parameters: server: description: ID of the node to apply this config to type: string + deployment_actions: + default: ['CREATE', 'UPDATE'] + type: comma_delimited_list + description: > + List of stack actions that will trigger any deployments in this + templates. The actions will be an empty list of the server is in the + toplevel DeploymentServerBlacklist parameter's value. resources: SshHostPubKeyConfig: @@ -28,6 +35,7 @@ resources: properties: config: {get_resource: SshHostPubKeyConfig} server: {get_param: server} + actions: {get_param: deployment_actions} outputs: |