Accept host keys for tempest git task

The repo server role was updated to allow serving repositories over the
git protocol in I62321a7b62dabca469eb072ddbf4e8f250ce0fb3.

Update the git tasks checking out the tempest repository to automatically
accept host keys so that the git procotol can become the default in the
integrated openstack-ansible deployment.

Change-Id: I9e949080f7f23f027fe7125137e86d3041b24df5
Signed-off-by: Kevin Carter <kevin.carter@rackspace.com>
This commit is contained in:
Kevin Carter 2016-07-25 11:13:34 -05:00
parent db430a4830
commit 42ce873b75
No known key found for this signature in database
GPG Key ID: 69FEFFC5E2D9273F

View File

@ -143,7 +143,10 @@
repo: "{{ tempest_git_repo }}"
dest: "{{ tempest_venv_bin | dirname }}"
version: "{{ tempest_git_install_branch }}"
force: yes
clone: "yes"
update: "yes"
accept_hostkey: "yes"
force: "yes"
register: git_clone
until: git_clone|success
retries: 5