summaryrefslogtreecommitdiff
path: root/releasenotes
diff options
context:
space:
mode:
authorJacob Anders <janders@redhat.com>2021-08-09 18:56:37 +1000
committerJacob Anders <janders@redhat.com>2021-08-10 09:45:05 +1000
commit71481ac483f0d1784cb10643da4c734abbea352f (patch)
tree1f31d2a2d761d03e56ad415d4612071981f04989 /releasenotes
parent8434b56766cf42e8faa36cad8cc39eaf43ac5ca7 (diff)
downloadironic-71481ac483f0d1784cb10643da4c734abbea352f.tar.gz
Enable priority overrides to enable/disable steps
Generic way to configure clean step priorites feature ( https://review.opendev.org/c/openstack/ironic/+/744117 ) enabled support for customising clean step priorities for any clean step by setting a configuration option. However, due to an error in code, it was not possible to use this feature to enable/disable steps entirely using this option as overrides were applied too late, after the disabled steps were already filtered out. This change fixes this error, making it possible to use step priority override configuration option to enable/disable steps as required. Story: 2009105 Change-Id: If3c01e6e4e8cedfe053e78fab9632bfff3682b06
Diffstat (limited to 'releasenotes')
-rw-r--r--releasenotes/notes/fix-step-priority-overrides-edecff2a6c68dcac.yaml9
1 files changed, 9 insertions, 0 deletions
diff --git a/releasenotes/notes/fix-step-priority-overrides-edecff2a6c68dcac.yaml b/releasenotes/notes/fix-step-priority-overrides-edecff2a6c68dcac.yaml
new file mode 100644
index 000000000..46610d824
--- /dev/null
+++ b/releasenotes/notes/fix-step-priority-overrides-edecff2a6c68dcac.yaml
@@ -0,0 +1,9 @@
+---
+fixes:
+ - |
+ Resolve issue where ``[conductor]clean_step_priority_override`` values
+ are applied too late, after disabled steps have been already filtered out.
+ With this change, priority overrides are applied prior to filtering out
+ disabled steps, so that this configuration option can use used to enable
+ or disable steps (in particular clean steps) in addition to changing
+ priorities they are run with.