![Clint Byrum](/assets/img/avatar_default.png)
merge.py is undocumented and untested, which is undesirable, as it does not seem to be going away any time soon. Change-Id: I7e4870e58a32c567e5947b9a48893b8210ad4d65
12 lines
378 B
Makefile
12 lines
378 B
Makefile
NOTCOMPUTE=nova-api.yaml keystone.yaml heat-allinone.yaml glance.yaml neutron.yaml mysql.yaml rabbitmq.yaml
|
|
|
|
notcompute.yaml: $(NOTCOMPUTE)
|
|
python merge.py --master-role notcompute --slave-roles stateless stateful -- $^ > notcompute.yaml
|
|
|
|
overcloud.yaml: overcloud-source.yaml nova-compute-instance.yaml
|
|
python merge.py $< > $@.tmp
|
|
mv $@.tmp $@
|
|
|
|
test:
|
|
@bash test_merge.bash
|