updated folders and added new repos
diff --git a/ansible.cfg b/ansible.cfg new file mode 100755 index 0000000..3b01d09 --- /dev/null +++ b/ansible.cfg
@@ -0,0 +1,5 @@ +[defaults] +retry_files_enabled = False +# executable = /bin/bash +ansible_shell_type=sh +module_name = shell
diff --git a/setup-base.yml b/setup-base.yml index bb03a23..95de21d 100644 --- a/setup-base.yml +++ b/setup-base.yml
@@ -13,21 +13,27 @@ with_items: '{{ configuration_folders }}' - name: Git checkout of sample configurations + become: false + ignore_errors: yes git: repo: '{{ host_repo }}/apigee-opdk-ansible-configuration-samples.git' dest: "{{ ansible_config }}/configurations" accept_hostkey: yes - name: Git checkout of sample inventories + become: false + ignore_errors: yes git: repo: '{{ host_repo }}/apigee-opdk-ansible-inventory-samples.git' dest: "{{ ansible_config }}/inventory" accept_hostkey: yes - name: Git checkout of sample playbooks + become: false + ignore_errors: yes git: - repo: '{{ host_repo }}/{{ item.repo }}.git' - dest: "{{ item.workspace }}/{{ item.repo }}" + repo: '{{ host_repo }}/{{ item.repo_name }}.git' + dest: "{{ item.workspace }}/{{ item.repo_name }}" accept_hostkey: yes with_items: "{{ repos }}"
diff --git a/workspace-folders.yml b/workspace-folders.yml index 6b947b3..d37a317 100644 --- a/workspace-folders.yml +++ b/workspace-folders.yml
@@ -11,4 +11,4 @@ - '{{ ansible_config }}/tmp/logs' - '{{ apigee_config }}' - '{{ playbook_workspace }}' -- '{{ role_workspace }}' \ No newline at end of file +- '{{ role_workspace }}'
diff --git a/workspace-github-repos.yml b/workspace-github-repos.yml index 010c0ba..0787671 100644 --- a/workspace-github-repos.yml +++ b/workspace-github-repos.yml
@@ -1,5 +1,4 @@ --- -host_repo: git@github.com:carlosfrias repos: - { workspace: '{{ playbook_dir }}/..', repo: local-workspace-maintenance } - { workspace: '{{ playbook_workspace }}', repo: apigee-opdk-playbook-installation-aio }