~ubuntu-branches/ubuntu/vivid/sahara/vivid-proposed

« back to all changes in this revision

Viewing changes to etc/rest-api-samples/cluster_tmpl_create.json

  • Committer: Package Import Robot
  • Author(s): Thomas Goirand
  • Date: 2014-09-24 16:34:46 UTC
  • Revision ID: package-import@ubuntu.com-20140924163446-8gu3zscu5e3n9lr2
Tags: upstream-2014.2~b3
ImportĀ upstreamĀ versionĀ 2014.2~b3

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
{
 
2
    "name": "demo-cluster-template",
 
3
    "description": "Demo Cluster template",
 
4
    "plugin_name": "vanilla",
 
5
    "hadoop_version": "1.2.1",
 
6
    "cluster_configs": {
 
7
        "general": {
 
8
            "some_general_conf": "qwerty"
 
9
        }
 
10
    },
 
11
    "node_groups": [
 
12
        {
 
13
            "name": "master",
 
14
            "node_group_template_id": "0fe82f67-5453-41bb-b913-36775c1f50be",
 
15
            "count": 1
 
16
        },
 
17
        {
 
18
            "name": "worker",
 
19
            "flavor_id": "42",
 
20
            "node_processes": ["tasktracker", "datanode"],
 
21
            "node_configs": {},
 
22
            "count": 2
 
23
        }
 
24
    ]
 
25
}