diff options
-rw-r--r-- | Makefile | 4 | ||||
-rw-r--r-- | ironic-source.yaml | 10 |
2 files changed, 14 insertions, 0 deletions
@@ -6,5 +6,9 @@ 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 diff --git a/ironic-source.yaml b/ironic-source.yaml new file mode 100644 index 00000000..bd23e615 --- /dev/null +++ b/ironic-source.yaml @@ -0,0 +1,10 @@ +Description: 'Ironic: Bare Metal provisioning, API and Conductor services.' +Resources: + ironic: + Type: AWS::AutoScaling::LaunchConfiguration + Metadata: + OpenStack::Role: notcomputeConfig + ironic: + db: mysql://ironic:unset@localhost/ironic + service-password: {Ref: AdminPassword} + |