rubysshchef-infratest-kitchenkitchen-dokken

"Kitchen list" command fails with "Could not load the 'ssh' transport from the load path"


I'm trying to add a Test Kitchen to a Chef cookbook but am getting the error "Could not load the 'ssh' transport from the load path".

I have previously set up a Test Kitchen following the exact same steps without issue, but that was on a different machine.

I've tried running

gem install net-ssh 

But that doesn't seem to fix the problem


Solution

  • Solved it.

    I ran

    gem list
    

    Which gave the output

    ..
    net-ssh (2.10.0.beta2, 2.9.2)
    ..
    

    I then issued the command:

    gem uninstall net-ssh 2.10.9.beta2
    

    And got the output:

    Select gem to uninstall:
     1. net-ssh-2.10.0.beta2
     2. net-ssh-2.9.2
     3. All versions
    

    Whereupon I selected option 1, the gem was removed and then running

    kitchen list
    

    Worked as expected