diff options
author | Robert Collins <rbtcollins@hp.com> | 2014-01-28 19:20:40 +1300 |
---|---|---|
committer | Robert Collins <rbtcollins@hp.com> | 2014-01-29 01:39:27 +1300 |
commit | c071255ad6bf1fb2c9db6799e96b509295f53fc9 (patch) | |
tree | caf081f072674cbb9861308f2e5a617157370f3d /examples/scale1.yaml | |
parent | 23c8aac2bacfee96e0faedb84d0b72893f13c6ec (diff) |
Make scaling out a feature for merge.py.
This is a simple implementation designed to work with our current
non-HOT approach. We need to adjust our templates a little to support
this - though future work could make that better, it's orthogonal to
this effort.
Change-Id: I555617e5f24a5882de915f057dc02e008c81e753
Diffstat (limited to 'examples/scale1.yaml')
-rw-r--r-- | examples/scale1.yaml | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/examples/scale1.yaml b/examples/scale1.yaml new file mode 100644 index 00000000..c0a0763d --- /dev/null +++ b/examples/scale1.yaml @@ -0,0 +1,30 @@ +Resources: + ComputeUser: + Type: AWS::IAM::User + Properties: + Policies: [ { Ref: ComputeAccessPolicy } ] + GlobalAccessPolicy: + Type: OS::Heat::AccessPolicy + NovaCompute0Key: + Type: FileInclude + Path: examples/scale2.yaml + SubKey: Resources.NovaCompute0Key + NovaCompute0CompletionCondition: + Type: FileInclude + Path: examples/scale2.yaml + SubKey: Resources.NovaCompute0CompletionCondition + NovaCompute0CompletionHandle: + Type: FileInclude + Path: examples/scale2.yaml + SubKey: Resources.NovaCompute0CompletionHandle + NovaCompute0Config: + Type: FileInclude + Path: examples/scale2.yaml + SubKey: Resources.NovaCompute0Config + Parameters: + ComputeImage: "123" + RabbitPassword: "guest" + NovaCompute0: + Type: FileInclude + Path: examples/scale2.yaml + SubKey: Resources.NovaCompute0 |