blob: 534cd0f0865a9dd4237b29738bb63fafaafaf474 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
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
|