diff options
author | Julia Kreger <juliaashleykreger@gmail.com> | 2017-08-09 11:55:47 +0000 |
---|---|---|
committer | Julia Kreger <juliaashleykreger@gmail.com> | 2020-04-15 11:46:03 -0700 |
commit | 6a73f7fdd074445593520031ed74dd4f25382a1d (patch) | |
tree | 49a2ffe8292580e13d91cd812fc92500add1e06d /ironic/cmd | |
parent | fcea89a01637882606042eecb3e15e9c5c75f160 (diff) | |
download | ironic-6a73f7fdd074445593520031ed74dd4f25382a1d.tar.gz |
Change [deploy]/default_boot_option to local
The default value of "netboot" was introduced to this configuration
variable as part of commit 93f947c852409af2c56a499428b09ff69ab345a1
in Ocata release.
This patch changes the default value of configuration parameter
'[deploy]/default_boot_option' and devstack variable
'IRONIC_DEFAULT_BOOT_OPTION' to 'local'.
Change-Id: I9bf56a7088281bbe20b8b6c2e47c6ab6559bfea4
Story: #1619339
Task: #10505
Diffstat (limited to 'ironic/cmd')
-rw-r--r-- | ironic/cmd/conductor.py | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/ironic/cmd/conductor.py b/ironic/cmd/conductor.py index d8fbcfec9..c9c56a2fd 100644 --- a/ironic/cmd/conductor.py +++ b/ironic/cmd/conductor.py @@ -49,14 +49,6 @@ def warn_about_unsafe_shred_parameters(conf): 'Secure Erase. This is a possible SECURITY ISSUE!') -def warn_about_missing_default_boot_option(conf): - if not conf.deploy.default_boot_option: - LOG.warning('The default value of default_boot_option ' - 'configuration will change eventually from ' - '"netboot" to "local". It is recommended to set ' - 'an explicit value for it during the transition period') - - def warn_about_agent_token_deprecation(conf): if not conf.require_agent_token: LOG.warning('The ``[DEFAULT]require_agent_token`` option is not ' @@ -70,7 +62,6 @@ def warn_about_agent_token_deprecation(conf): def issue_startup_warnings(conf): warn_about_unsafe_shred_parameters(conf) - warn_about_missing_default_boot_option(conf) warn_about_agent_token_deprecation(conf) |