What is the difference between kitchen.yml and .kitchen.yml? Why that extra dot in the beginning? I can only find the below statement in google and nothing else to help.
As of test-kitchen 1.21.0, we now prefer kitchen.yml over .kitchen.yml. This preference applies to kitchen.local.yml as well. This is backward compatible so the dot versions continue to work.
Files starting with dot (
.) are hidden files in GNU/Linux/*nix. So.kitchen.ymlfile is a hidden Kitchen configuration file.There is no difference, except that the
.kitchen.ymlfile is not visible (being hidden) in directory listing by default. Whereaskitchen.ymlis a regular (visible) file.