bifrost/playbooks/roles/bifrost-prep-for-install/tasks/git_download.yaml
Yolanda Robla Mota fd6045d9b3 Enable upper requirements on bifrost
pip install for bifrost shall be installing upper requirements,
to go with same versions used by Ironic.

Change-Id: Ib5081cabc5c73c11a2088689f2e299cd2eb12338
2016-11-02 08:28:49 +01:00

50 lines
1.6 KiB
YAML

# Copyright (c) 2015 Hewlett-Packard Development Company, L.P.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
# implied.
# See the License for the specific language governing permissions and
# limitations under the License.
---
- include: git.yml
git_url="{{ ironic_git_url }}"
git_folder="{{ ironic_git_folder }}"
git_branch="{{ ironic_git_branch }}"
- include: git.yml
git_url="{{ ironicclient_git_url }}"
git_folder="{{ ironicclient_git_folder }}"
git_branch="{{ ironicclient_git_branch }}"
- include: git.yml
git_url="{{ shade_git_url }}"
git_folder="{{ shade_git_folder }}"
git_branch="{{ shade_git_branch }}"
- include: git.yml
git_url="{{ dib_git_url }}"
git_folder="{{ dib_git_folder }}"
git_branch="{{ dib_git_branch }}"
- include: git.yml
git_url="{{ ironicinspector_git_url }}"
git_folder="{{ ironicinspector_git_folder }}"
git_branch="{{ ironicinspector_git_branch }}"
- include: git.yml
git_url="{{ ironicinspectorclient_git_url }}"
git_folder="{{ ironicinspectorclient_git_folder }}"
git_branch="{{ ironicinspectorclient_git_branch }}"
- include: git.yml
git_url="{{ reqs_git_url }}"
git_folder="{{ reqs_git_folder }}"
git_branch="{{ reqs_git_branch }}"