File tree Expand file tree Collapse file tree 5 files changed +13
-20
lines changed
Expand file tree Collapse file tree 5 files changed +13
-20
lines changed Original file line number Diff line number Diff line change @@ -103,7 +103,7 @@ kolla_bifrost_inspector_port_addition: "{{ inspector_add_ports }}"
103103kolla_bifrost_inspector_extra_kernel_options: "{{ inspector_extra_kernel_options }}"
104104
105105# List of introspection rules for Bifrost's Ironic Inspector service.
106- kolla_bifrost_inspector_rules: "{{ inspector_rules + [inspector_rule_legacy_deploy_kernel] }}"
106+ kolla_bifrost_inspector_rules: "{{ inspector_rules }}"
107107
108108# Ironic inspector IPMI username to set.
109109kolla_bifrost_inspector_ipmi_username: "{{ ipmi_username }}"
@@ -127,9 +127,6 @@ kolla_bifrost_inspector_deploy_kernel: "http://{{ provision_oc_net_name | net_ip
127127# Ironic inspector deployment ramdisk location.
128128kolla_bifrost_inspector_deploy_ramdisk: "http://{{ provision_oc_net_name | net_ip }}:8080/ipa.initramfs"
129129
130- # Ironic inspector legacy deployment kernel location.
131- kolla_bifrost_inspector_legacy_deploy_kernel: "http://{{ provision_oc_net_name | net_ip }}:8080/ipa.vmlinuz"
132-
133130# Timeout of hardware inspection on overcloud nodes, in seconds. Default is
134131# {{ inspector_inspection_timeout }}.
135132kolla_bifrost_inspection_timeout: "{{ inspector_inspection_timeout }}"
Original file line number Diff line number Diff line change @@ -140,18 +140,6 @@ inspector_rule_deploy_kernel:
140140 path: "driver_info/deploy_kernel"
141141 value: "{{ inspector_rule_var_deploy_kernel }}"
142142
143- # Ironic inspector rule to update deployment kernel from legacy location.
144- inspector_rule_legacy_deploy_kernel:
145- description: "Update deploy kernel from legacy"
146- conditions:
147- - field: "node://driver_info.deploy_kernel"
148- op: "eq"
149- value: "{{ inspector_rule_var_legacy_deploy_kernel }}"
150- actions:
151- - action: "set-attribute"
152- path: "driver_info/deploy_kernel"
153- value: "{{ inspector_rule_var_deploy_kernel }}"
154-
155143# Deployment ramdisk referenced by inspector rule.
156144inspector_rule_var_deploy_ramdisk:
157145
Original file line number Diff line number Diff line change 1919 inspector_rule_var_lldp_switch_port_interface : " {{ kolla_bifrost_inspector_lldp_switch_port_interface }}"
2020 inspector_rule_var_deploy_kernel : " {{ kolla_bifrost_inspector_deploy_kernel }}"
2121 inspector_rule_var_deploy_ramdisk : " {{ kolla_bifrost_inspector_deploy_ramdisk }}"
22- inspector_rule_var_legacy_deploy_kernel : " {{ kolla_bifrost_inspector_legacy_deploy_kernel }}"
2322 when : kolla_enable_bifrost | bool
Original file line number Diff line number Diff line change 127127# Ironic inspector deployment ramdisk location.
128128# kolla_bifrost_inspector_deploy_ramdisk:
129129
130- # Ironic inspector legacy deployment kernel location.
131- # kolla_bifrost_inspector_legacy_deploy_kernel:
132-
133130# Timeout of hardware inspection on overcloud nodes, in seconds. Default is
134131# {{ inspector_inspection_timeout }}.
135132# kolla_bifrost_inspection_timeout:
Original file line number Diff line number Diff line change 1+ ---
2+ upgrade :
3+ - |
4+ Removes the Bifrost introspection rule that was updating the deploy kernel
5+ location from the legacy ``ipa.vmlinuz`` path to the new ``ipa.kernel``
6+ path. If this migration has not yet been applied, update the deployment
7+ kernel location manually with:
8+
9+ ``OS_CLOUD=bifrost baremetal node set --driver-info deploy_kernel=<http://url/to/ipa.kernel> $NODE_UUID_OR_NAME``
10+
11+ This is only relevant for deployments with nodes discovered with the
12+ OpenStack Train release or earlier.
You can’t perform that action at this time.
0 commit comments