summaryrefslogtreecommitdiffstats
path: root/deployment/ansible.cfg
diff options
context:
space:
mode:
authorValerii Ponomarov <vponomar@redhat.com>2019-02-07 02:08:23 +0530
committerValerii Ponomarov <vponomar@redhat.com>2019-02-07 02:36:02 +0530
commit25fcd9c5aa4c360eff19ef08fc4e2bdff6147ffd (patch)
tree544cf09479861ee7c434a7f9ece19167c14ddf35 /deployment/ansible.cfg
parenta6c7dead0d6ddad4dae93a4292891617b50b44a0 (diff)
Add end-to-end OCP 'deployment' functionality
Add end-to-end deployment tool of OpenShift and OpenShift Container Storage on top of VMWare. Added code is modified version of the 'reference-architecture/vmware-ansible' dir from the following repo: https://github.com/vponomaryov/openshift-ansible-contrib Read 'deployment/README.rst' file for more details about the deployment tool. Change-Id: Ic96f252ff786cc1ecf24d27f0ec47e324131e41b
Diffstat (limited to 'deployment/ansible.cfg')
-rw-r--r--deployment/ansible.cfg15
1 files changed, 15 insertions, 0 deletions
diff --git a/deployment/ansible.cfg b/deployment/ansible.cfg
new file mode 100644
index 00000000..09c118b9
--- /dev/null
+++ b/deployment/ansible.cfg
@@ -0,0 +1,15 @@
+[defaults]
+forks = 50
+host_key_checking = False
+inventory = inventory/vsphere/vms/vmware_inventory.py
+gathering = smart
+roles_path = /usr/share/ansible/openshift-ansible/roles:/opt/ansible/roles:./roles:../../roles
+remote_user = root
+private_key_file=~/.ssh/id_rsa
+retry_files_enabled=False
+log_path=./ansible.log
+
+[ssh_connection]
+ssh_args = -C -o ControlMaster=auto -o ControlPersist=900s -o GSSAPIAuthentication=no -o PreferredAuthentications=publickey -o StrictHostKeyChecking=false
+control_path = inventory
+pipelining = True