![Derek Higgins](/assets/img/avatar_default.png)
o Adds the required swift metadata (in swift-source.yaml). o Sets up glance to use the swift backend on the overcloud. o Sets up glance to use the file backend on the undercloud and seed, i.e. maintain the Status quo. Change-Id: I4a70ffbf9c51f1fea5cfc84d8718d3d30d36b3f2
17 lines
545 B
Makefile
17 lines
545 B
Makefile
overcloud.yaml: overcloud-source.yaml nova-compute-instance.yaml swift-source.yaml
|
|
# $^ won't work here because we want to list nova-compute-instance.yaml as
|
|
# a prerequisite but don't want to pass it into merge.py
|
|
python merge.py overcloud-source.yaml swift-source.yaml > $@.tmp
|
|
mv $@.tmp $@
|
|
|
|
undercloud-vm-tuskar.yaml: undercloud-vm.yaml tuskar-source.yaml
|
|
python merge.py $^ > $@.tmp
|
|
mv $@.tmp $@
|
|
|
|
undercloud-vm-ironic.yaml: undercloud-vm.yaml ironic-source.yaml
|
|
python merge.py $^ > $@.tmp
|
|
mv $@.tmp $@
|
|
|
|
test:
|
|
@bash test_merge.bash
|