-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtemplates.json
81 lines (81 loc) · 2.49 KB
/
templates.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"version": "v1",
"public": true,
"name": "ruby-rails",
"icon": "https://rubyonrails.org/images/rails-logo.svg",
"long_name": "Ruby on Rails Base Template Repository",
"description": "Base Template Repository for Ruby on Rails applications",
"templates": {
"stencils": [
{
"name": "Deployment",
"filename_pattern": "${service}_deploy.yml",
"filename": "deploy.yml",
"description": "Defines a deployment",
"context_type": "service",
"tags": ["deployment"],
"preferred_sequence": 1,
"suggested": true,
"min_usage": 1,
"max_usage": 9999
},
{
"name": "Migrate",
"filename_pattern": "${service}_migration.yml",
"filename": "migrate.yml",
"description": "Run database migrations",
"context_type": "service",
"tags": ["migration", "cloud66:migration"],
"preferred_sequence": 2,
"suggested": true,
"min_usage": 1,
"max_usage": 1
}
],
"policies": [],
"transformations": [],
"helm_charts": [],
"workflows": [
{
"name": "Setup Workflow",
"description": "Workflow to setup the application for deployment",
"tags": [],
"filename": "setup.yml"
},
{
"name": "Helm Release Inline",
"description": "partial for helm release deployment",
"tags": [],
"filename": "_helm_upgrade.yml"
},
{
"name": "Blank Workflow",
"description": "A blank workflow template",
"tags": [],
"filename": "blank.yml"
},
{
"name": "Deploy",
"description": "Workflow to deploy the application",
"tags": [],
"filename": "deploy.yml"
}
],
"filters": [
{
"name": "blank",
"filename": "blank.json",
"description": "Empty filter (passes all)",
"tags": [],
"min_usage": 0
},
{
"name": "migration",
"description": "Select stencils with a tag value 'migration'",
"filename": "migration.json",
"tags": [],
"min_usage": 1
}
]
}
}