diff options
author | Brenton Leanhardt <bleanhar@redhat.com> | 2016-04-01 13:20:33 -0400 |
---|---|---|
committer | Brenton Leanhardt <bleanhar@redhat.com> | 2016-04-01 13:20:33 -0400 |
commit | ff86a5d3e4caa6eaba2d77833278998105bd9fd0 (patch) | |
tree | 3faba09a64ef1f3d0fd64d91093b38b916e2837d /bin | |
parent | c8f5f05df668eaa6502b17fed9dc8099e7fab258 (diff) | |
parent | 51b2ebf46694e0dc51ef56985a54112ed3933017 (diff) | |
download | openshift-ff86a5d3e4caa6eaba2d77833278998105bd9fd0.tar.gz openshift-ff86a5d3e4caa6eaba2d77833278998105bd9fd0.tar.bz2 openshift-ff86a5d3e4caa6eaba2d77833278998105bd9fd0.tar.xz openshift-ff86a5d3e4caa6eaba2d77833278998105bd9fd0.zip |
Merge pull request #1650 from lhuard1A/ssh_pipelining
Enable Ansible ssh pipelining to speedup deployment
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/cluster | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/bin/cluster b/bin/cluster index ecb8bc58e..fcab685ef 100755 --- a/bin/cluster +++ b/bin/cluster @@ -34,6 +34,8 @@ class Cluster(object): 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 + if 'ANSIBLE_SSH_PIPELINING' not in os.environ: + os.environ['ANSIBLE_SSH_PIPELINING'] = 'True' def get_deployment_type(self, args): """ @@ -284,7 +286,20 @@ if __name__ == '__main__': cluster = Cluster() parser = argparse.ArgumentParser( + formatter_class=argparse.RawDescriptionHelpFormatter, description='Python wrapper to ensure proper configuration for OpenShift ansible playbooks', + epilog='''\ +This wrapper is overriding the following ansible variables: + + * ANSIBLE_SSH_ARGS: + If not set in the environment, this wrapper will use the following value: + `-o ForwardAgent=yes -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null -o ControlMaster=auto -o ControlPersist=600s` + If set in the environment, the environment variable value is left untouched and used. + + * ANSIBLE_SSH_PIPELINING: + If not set in the environment, this wrapper will set it to `True`. + If you experience issue with Ansible ssh pipelining, you can disable it by explicitely set this environment variable to `False`. +''' ) parser.add_argument('-v', '--verbose', action='count', help='Multiple -v options increase the verbosity') |