forked from 2015-Middleware-Keynote/sketchpod
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app_template.json
90 lines (90 loc) · 2.97 KB
/
app_template.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
82
83
84
85
86
87
88
89
90
{
"kind": "List",
"creationTimestamp": null,
"apiVersion": "v1beta1",
"items": [
{
"kind": "Service",
"id": "APPNAME",
"creationTimestamp": null,
"apiVersion": "v1beta1",
"port": 8080,
"portName": "APPNAME-tcp-8080",
"protocol": "TCP",
"containerPort": 8080,
"selector": {
"deploymentconfig": "APPNAME"
},
"ports": [
{
"name": "APPNAME-tcp-8080",
"protocol": "TCP",
"port": 8080,
"containerPort": 8080
}
]
},
{
"kind": "Route",
"apiVersion": "v1beta1",
"metadata": {
"name": "APPNAME"
},
"host": "APPNAME-summit3.apps.summit.paas.ninja",
"serviceName": "APPNAME"
},
{
"kind": "DeploymentConfig",
"apiVersion": "v1beta1",
"metadata": {
"name": "APPNAME",
"creationTimestamp": null
},
"triggers": [
{
"type": "ConfigChange"
}
],
"template": {
"strategy": {
"type": "Recreate"
},
"controllerTemplate": {
"replicas": 1,
"replicaSelector": {
"deploymentconfig": "APPNAME"
},
"podTemplate": {
"desiredState": {
"manifest": {
"version": "v1beta2",
"id": "",
"volumes": null,
"containers": [
{
"name": "APPNAME",
"image": "ryanj/doodlepod",
"ports": [
{
"name": "APPNAME-tcp-8080",
"containerPort": 8080,
"protocol": "TCP"
}
],
"resources": {},
"imagePullPolicy": "",
"capabilities": {}
}
],
"restartPolicy": {}
}
},
"labels": {
"deploymentconfig": "APPNAME"
}
}
}
}
}
]
}