diff options
| -rwxr-xr-x | bin/cluster | 10 | 
1 files changed, 10 insertions, 0 deletions
| diff --git a/bin/cluster b/bin/cluster index 7eb4a4448..c80fe0cab 100755 --- a/bin/cluster +++ b/bin/cluster @@ -23,6 +23,16 @@ class Cluster(object):                  '-o ControlMaster=auto '                  '-o ControlPersist=600s '              ) +            # Because of `UserKnownHostsFile=/dev/null` +            # our `.ssh/known_hosts` file most probably misses the ssh host public keys +            # of our servers. +            # In that case, ansible serializes the execution of ansible modules +            # because we might be interactively prompted to accept the ssh host public keys. +            # Because of `StrictHostKeyChecking=no` we know that we won't be prompted +            # So, we don't want our modules execution to be serialized. +            os.environ['ANSIBLE_HOST_KEY_CHECKING'] = 'False' +            # TODO: A more secure way to proceed would consist in dynamically +            # retrieving the ssh host public keys from the IaaS interface      def get_deployment_type(self, args):          """ | 
