Inspection - console to tty0 and ttyS0

In tripleo-common iamge-yaml's we set:
  'console=tty0 console=ttyS0,115200'
So that console is on to both the serial and virtual terminal.

Let's use the same default for inspection on the undercloud by
setting IronicInspectorKernelArgs accordingly.

Change-Id: Iae0c0a0346f353def8a7bf349f192472b2d8437b
This commit is contained in:
Harald Jensås 2021-10-20 18:00:32 +02:00
parent 437c064ee3
commit cc10ee4dee
1 changed files with 1 additions and 1 deletions

View File

@ -203,7 +203,7 @@ def _process_drivers_and_hardware_types(conf, env):
def _process_ipa_args(conf, env):
"""Populate the environment with IPA kernal args ."""
inspection_kernel_args = []
inspection_kernel_args = ['console=tty0', 'console=ttyS0,115200']
if conf.undercloud_debug:
inspection_kernel_args.append('ipa-debug=1')
if conf.inspection_runbench: