From 8dd43d4e8d968f41dea6f1f772b580cfe3d10482 Mon Sep 17 00:00:00 2001 From: rabi Date: Thu, 17 Mar 2022 11:05:19 +0530 Subject: [PATCH] Remove stack_action parameter This is not used anymore. Change-Id: Ibed7a54bc63f93c4991216bf70618991c862db24 (cherry picked from commit 6ae0ee754ecef693a7406946f7fb778d936fc0ff) --- manifests/profile/base/rabbitmq.pp | 5 ----- releasenotes/notes/remove-stack-action-4f0eaef2405d39da.yaml | 4 ++++ 2 files changed, 4 insertions(+), 5 deletions(-) create mode 100644 releasenotes/notes/remove-stack-action-4f0eaef2405d39da.yaml diff --git a/manifests/profile/base/rabbitmq.pp b/manifests/profile/base/rabbitmq.pp index 8fe6c864a..5fa59985e 100644 --- a/manifests/profile/base/rabbitmq.pp +++ b/manifests/profile/base/rabbitmq.pp @@ -117,10 +117,6 @@ # (Optional) RabbitMQ Default User. # Defaults to hiera('rabbitmq::default_user') # -# [*stack_action*] -# (Optional) Action of the stack deployment. -# Defaults to hiera('stack_action') -# # [*step*] # (Optional) The current step in deployment. See tripleo-heat-templates # for more details. @@ -149,7 +145,6 @@ class tripleo::profile::base::rabbitmq ( $notify_bootstrap_node = hiera('oslo_messaging_notify_short_bootstrap_node_name'), $rabbitmq_pass = hiera('rabbitmq::default_pass'), $rabbitmq_user = hiera('rabbitmq::default_user'), - $stack_action = hiera('stack_action'), $step = Integer(hiera('step')), ) { if $rpc_scheme == 'rabbit' { diff --git a/releasenotes/notes/remove-stack-action-4f0eaef2405d39da.yaml b/releasenotes/notes/remove-stack-action-4f0eaef2405d39da.yaml new file mode 100644 index 000000000..0ca168231 --- /dev/null +++ b/releasenotes/notes/remove-stack-action-4f0eaef2405d39da.yaml @@ -0,0 +1,4 @@ +--- +upgrade: + - | + The unused ``stack_action`` hiera parameter has now been removed.