~juju-deployers/juju-deployer/darwin

« back to all changes in this revision

Viewing changes to deployer/tests/test_data/stack-inherits.cfg

  • Committer: Adam Gandelman
  • Date: 2013-09-03 20:44:14 UTC
  • mfrom: (114 darwin)
  • mto: This revision was merged to the branch mainline in revision 119.
  • Revision ID: adamg@canonical.com-20130903204414-xsqqz2gp83dp5d2o
MergeĀ lp:juju-deployer/darwin.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
{
 
2
    "my-files-frontend-dev": {
 
3
        "inherits": "wordpress",
 
4
        "services": {
 
5
            "my-files-fe": {
 
6
                "constraints": "instance-type=m1.small"
 
7
            },
 
8
            "my-files-lb": {
 
9
                "constraints": "instance-type=m1.small",
 
10
                "options": {
 
11
                    "services": "include-file://stack-include.yaml"
 
12
                }
 
13
            },
 
14
            "my-nagios": {
 
15
                "constraints": "instance-type=m1.small"
 
16
            },
 
17
            "db": {
 
18
                "options": {
 
19
                    "tuning-level": "fastest"
 
20
                }
 
21
            }
 
22
        },
 
23
       "relations": {
 
24
            "my-nrpe-files-fe:monitors": {
 
25
                "weight": 99,
 
26
                "consumes": ["my-nagios:monitors"]
 
27
            },
 
28
            "my-files-fe:juju-info": {
 
29
                "weight": 98,
 
30
                "consumes": ["my-nagios:nagios"]
 
31
            },
 
32
            "my-nrpe-files-lb:monitors": {
 
33
                "weight": 89,
 
34
                "consumes": ["my-nagios:monitors"]
 
35
            },
 
36
            "my-files-lb:juju-info": {
 
37
                "weight": 88,
 
38
                "consumes": ["my-nagios:nagios"]
 
39
            },
 
40
            "my-files-lb:local-monitors": {
 
41
                "weight": 88,
 
42
                "consumes": ["my-nrpe-files-lb:local-monitors"]
 
43
            }
 
44
        }
 
45
    }
 
46
}
 
47