291c04c87f
Allows users to develop on ironic using Kolla. Partially implements: blueprint mount-sources Change-Id: I74540f5bcbf723f097f3dea96dcaf067834c493a
13 lines
441 B
YAML
13 lines
441 B
YAML
---
|
|
- name: Cloning ironic source repository for development
|
|
git:
|
|
repo: "{{ ironic_git_repository }}"
|
|
dest: "{{ kolla_dev_repos_directory }}/{{ project_name }}"
|
|
update: "{{ ironic_dev_repos_pull }}"
|
|
|
|
- name: Cloning ironic-inspector source repository for development
|
|
git:
|
|
repo: "{{ ironic_inspector_git_repository }}"
|
|
dest: "{{ kolla_dev_repos_directory }}/ironic-inspector"
|
|
update: "{{ ironic_dev_repos_pull }}"
|