Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

setting to wipe all disks before deployment #311

Merged
merged 1 commit into from
Nov 11, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions kolla/defaults.yml
Original file line number Diff line number Diff line change
Expand Up @@ -184,6 +184,7 @@ ironic_image_cache_size: 20480 # MB
ironic_console_serial_speed: 115200n8
encoded_ironic_pxe_root_password: "{{ ironic_pxe_root_password | password_hash('md5') | regex_replace( '(\\$)', '$\\1') }}"
ironic_kernel_append_params: nofb vga=normal console=tty0 console=ttyS0,{{ ironic_console_serial_speed }} rootpwd="{{ encoded_ironic_pxe_root_password }}"
ironic_erase_devices_metadata_during_deploy: false

# settings for ironic inspector

Expand Down
4 changes: 4 additions & 0 deletions kolla/node_custom_config/ironic.conf
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,10 @@ enable_for_conductor = False
[deploy]
default_boot_option = local

{% if ironic_erase_devices_metadata_during_deploy | bool %}
erase_devices_metadata_during_deploy = True
{% endif %}

[inspector]
require_managed_boot = True
# passed to ironic-python-agent, see :
Expand Down
Loading