Remove usage of stack_action/stack_update_type

They are not relevant with ephemeral heat and not used anywhere.

Depends-On: https://review.opendev.org/c/openstack/puppet-tripleo/+/846941
Change-Id: I750ff2146f2c289fea86c111b651f32ef992ece4
(cherry picked from commit e67ce7304d)
This commit is contained in:
rabi 2022-03-17 11:15:30 +05:30 committed by Rabi Mishra
parent 07462b4d8b
commit e9cf875ba2
5 changed files with 4 additions and 8 deletions

View File

@ -0,0 +1,4 @@
---
deprecations:
- |
This change removes unused stack_action/stack_update_type hieras.

View File

@ -214,8 +214,6 @@ class ActionModule(ActionBase):
DISPLAY.vv("Computing data for top level vars")
all_nodes['deploy_identifier'] = task_vars['deploy_identifier']
all_nodes['stack_action'] = task_vars['stack_action']
all_nodes['stack_update_type'] = task_vars['stack_update_type']
all_nodes['container_cli'] = task_vars['container_cli']
# controller_node_<ips/names>

View File

@ -247,8 +247,6 @@ provisioner:
swift_storage_network: ctlplane
tacker_api_network: ctlplane
zaqar_api_network: ctlplane
stack_action: CREATE
stack_update_type: ''
tripleo_role_name: Standalone
validate_controllers_icmp: true
validate_fqdn: false

View File

@ -249,8 +249,6 @@ provisioner:
swift_storage_network: ctlplane
tacker_api_network: ctlplane
zaqar_api_network: ctlplane
stack_action: CREATE
stack_update_type: ''
tripleo_role_name: Standalone
validate_controllers_icmp: true
validate_fqdn: false

View File

@ -60,8 +60,6 @@
{% endif %}
{% endif %}
{% set _ = all_nodes.__setitem__('deploy_identifier', deploy_identifier) %}
{% set _ = all_nodes.__setitem__('stack_action', stack_action) %}
{% set _ = all_nodes.__setitem__('stack_update_type', stack_update_type) %}
{% set _ = all_nodes.__setitem__('container_cli', container_cli) %}
{% set _ = all_nodes.__setitem__('controller_node_ips', (groups[primary_role_name] | default([]) | map('extract', hostvars, 'ctlplane_ip') | list | join(','))) %}
{% set _ = all_nodes.__setitem__('controller_node_names', (groups[primary_role_name] | default([]) | map('extract', hostvars, 'inventory_hostname') | list | join(','))) %}