Browse Source
- Remove support for constrains file from infrared plugin - Use file stored on tobiko repository by default Change-Id: I0f835d753fb9d3a1670e8eb9b196e02e989d4262changes/19/815419/19
15 changed files with 64 additions and 101 deletions
@ -1,35 +0,0 @@
|
||||
--- |
||||
|
||||
- block: |
||||
|
||||
- name: "look at remote host constraints file '{{ upper_constraints_file }}'" |
||||
stat: |
||||
path: '{{ upper_constraints_file | realpath }}' |
||||
when: "not upper_constraints_file.startswith('http')" |
||||
register: stat_upper_constraints_file |
||||
failed_when: 'not stat_upper_constraints_file.stat.exists' |
||||
|
||||
- name: "set remote upper constraints file path" |
||||
set_fact: |
||||
remote_constraints_file: '{{ upper_constraints_file }}' |
||||
|
||||
rescue: |
||||
- name: "create temporary upper requirements file" |
||||
tempfile: |
||||
state: file |
||||
suffix: .txt |
||||
register: create_upper_constraints_file |
||||
|
||||
- debug: var=create_upper_constraints_file |
||||
|
||||
- name: "copy upper requirements file" |
||||
copy: |
||||
src: '{{ upper_constraints_file }}' |
||||
dest: '{{ create_upper_constraints_file.path }}' |
||||
mode: "0644" |
||||
|
||||
- name: "set remote upper constraints file path" |
||||
set_fact: |
||||
remote_constraints_file: '{{ create_upper_constraints_file.path }}' |
||||
|
||||
- debug: var=upper_constraints_file |
@ -0,0 +1,29 @@
|
||||
coverage===6.0.2 |
||||
decorator===5.1.0 |
||||
deprecation===2.1.0 |
||||
docker===5.0.3 |
||||
fixtures===3.0.0 |
||||
Jinja2===3.0.2 |
||||
keystoneauth1===4.4.0 |
||||
mock===4.0.3 |
||||
netaddr===0.8.0 |
||||
neutron-lib===2.16.0 |
||||
oslo.config===8.7.1 |
||||
oslo.log===4.6.1 |
||||
paramiko===2.8.0 |
||||
pbr===5.6.0 |
||||
psutil===5.8.0 |
||||
pytest===6.2.5 |
||||
pytest-html===3.1.1 |
||||
pytest-xdist===2.4.0 |
||||
python-glanceclient===3.5.0 |
||||
python-heatclient===2.4.0 |
||||
python-ironicclient===4.9.0 |
||||
python-neutronclient===7.6.0 |
||||
python-novaclient===17.6.0 |
||||
python-octaviaclient===2.4.0 |
||||
python-openstackclient===5.6.0 |
||||
PyYAML===6.0 |
||||
sshtunnel===0.4.0 |
||||
testtools===2.5.0 |
||||
validations-libs===1.4.0 |
Loading…
Reference in new issue