[RESOLVED]Chef converge throws out failed when resource reboot has been executed

image

reboot 'node-reboot' do
  action :nothing
  reason 'To apply the new kernel version update, the system needs to be restarted.'
  delay_mins 1
  only_if { node['system']['auto_reboot'] == true }
end

Found the solution: Test-Kitchen 1.10.0 Released

And added wait retry in .kitchen.yml

image