|
def chef_container_name |
|
config[:platform] != "" ? "chef-#{chef_version}-" + config[:platform].sub("/", "-") : "chef-#{chef_version}" |
|
end |
I don't really know what the implication of this is at the moment, but I was chasing another problem and happened to be sniffing the Docker API calls that Dokken was making while I was doing Kitchen runs and noticed it kept calling for a Chef image when it should only be working with CINC. This is where I narrowed down the problem to.
kitchen-dokken/lib/kitchen/driver/dokken.rb
Lines 659 to 661 in 320cee7
I don't really know what the implication of this is at the moment, but I was chasing another problem and happened to be sniffing the Docker API calls that Dokken was making while I was doing Kitchen runs and noticed it kept calling for a Chef image when it should only be working with CINC. This is where I narrowed down the problem to.