{"body":"diff --git a/ironic/drivers/modules/agent.py b/ironic/drivers/modules/agent.py\nindex 8fc8ed73b..67fbfe8c1 100644\n--- a/ironic/drivers/modules/agent.py\n+++ b/ironic/drivers/modules/agent.py\n@@ -705,6 +705,24 @@ class AgentRAID(base.RAIDInterface):\n         \"\"\"Return the properties of the interface.\"\"\"\n         return {}\n \n+    @METRICS.timer('AgentRAID.get_clean_steps')\n+    def get_clean_steps(self, task):\n+        \"\"\"Get the list of clean steps from the agent.\n+\n+        :param task: a TaskManager object containing the node\n+        :raises NodeCleaningFailure: if the clean steps are not yet\n+            available (cached), for example, when a node has just been\n+            enrolled and has not been cleaned yet.\n+        :returns: A list of clean step dictionaries\n+        \"\"\"\n+        new_priorities = {\n+            'delete_configuration': CONF.deploy.delete_configuration_priority,\n+            'create_configuration': CONF.deploy.create_configuration_priority\n+        }\n+        return agent_base.get_steps(\n+            task, 'clean', interface='raid',\n+            override_priorities=new_priorities)\n+\n     @METRICS.timer('AgentRAID.create_configuration')\n     @base.clean_step(priority=0)\n     def create_configuration(self, task,\ndiff --git a/ironic/drivers/modules/agent_base.py b/ironic/drivers/modules/agent_base.py\nindex eae2a9731..473d82a65 100644\n--- a/ironic/drivers/modules/agent_base.py\n+++ b/ironic/drivers/modules/agent_base.py\n@@ -674,8 +674,6 @@ class AgentDeployMixin(HeartbeatMixin):\n             'erase_devices': CONF.deploy.erase_devices_priority,\n             'erase_devices_metadata':\n                 CONF.deploy.erase_devices_metadata_priority,\n-            'delete_configuration': CONF.deploy.delete_configuration_priority,\n-            'create_configuration': CONF.deploy.create_configuration_priority\n         }\n         return get_steps(\n             task, 'clean', interface='deploy',","name":"","extension":"txt","url":"https://www.irccloud.com/pastebin/5XG3Zj6m","modified":1616514237,"id":"5XG3Zj6m","size":1933,"lines":42,"own_paste":false,"theme":"","date":1616514237}