对ansible不熟悉。我正在尝试自动化部署。我可以手动完成。不确定如何通过Ansible实现这一目标
答案 0 :(得分:0)
如果有Rest-API,请使用uri module
如果您需要更多帮助,请提供更多详细信息。
答案 1 :(得分:0)
找到了更好的方法 -
- name: Upload ssh key to the Instance
copy: src=yourSrc/.ssh/id_rsa_bitbucket dest=/yourDest/.ssh/id_rsa_bitbucket mode=600
- name: Clone the git repo using GIT_SSH
git: repolink dest=dest key_file=yourDest/.ssh/id_rsa_bitbucket accept_hostkey=true clone=yes force=yes