c9ce27c981
Now that merge.py is invokable from another script (Ia6b6416fe10358d23f2b120283eecaf4c1178cfd) and from comments at that review, it makes sense to offer a nicer way to consume the merge functionality. Once you git clone tripleo-heat-templates you can python setup.py install and get /usr/bin/tripleo_heat_merge as well as a tripleo_heat_merge package in python2.7/site-packages. Makefile edits required because we moved merge.py into the tripleo_heat_merge directory for the packaging. Change-Id: I587fa7a826f93f89e8e5c266af7f5765438fe738
25 lines
936 B
Makefile
25 lines
936 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 ./tripleo_heat_merge/merge.py overcloud-source.yaml swift-source.yaml > $@.tmp
|
|
mv $@.tmp $@
|
|
|
|
undercloud-vm.yaml: undercloud-source.yaml undercloud-vm-source.yaml
|
|
python ./tripleo_heat_merge/merge.py $^ > $@.tmp
|
|
mv $@.tmp $@
|
|
|
|
undercloud-bm.yaml: undercloud-source.yaml undercloud-bm-source.yaml
|
|
python ./tripleo_heat_merge/merge.py $^ > $@.tmp
|
|
mv $@.tmp $@
|
|
|
|
undercloud-vm-tuskar.yaml: undercloud-source.yaml undercloud-vm-source.yaml tuskar-source.yaml
|
|
python ./tripleo_heat_merge/merge.py $^ > $@.tmp
|
|
mv $@.tmp $@
|
|
|
|
undercloud-vm-ironic.yaml: undercloud-source.yaml undercloud-vm-source.yaml ironic-source.yaml
|
|
python ./tripleo_heat_merge/merge.py $^ > $@.tmp
|
|
mv $@.tmp $@
|
|
|
|
test:
|
|
@bash test_merge.bash
|