-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeis-builder.json
More file actions
59 lines (59 loc) · 1.48 KB
/
Copy pathdeis-builder.json
File metadata and controls
59 lines (59 loc) · 1.48 KB
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
{
"kind":"ReplicationController",
"apiVersion":"v1",
"metadata":{
"name":"deis-builder",
"labels":{
"name":"deis-builder"
}
},
"spec":{
"replicas":1,
"selector":{
"name":"deis-builder"
},
"template":{
"metadata":{
"labels":{
"name":"deis-builder"
}
},
"spec":{
"containers":[
{
"name":"deis-builder",
"image":"registry.smothiki.io:5000/deis/builder:git-b75a13b",
"env":[
{
"name" : "HOST",
"value" : "10.240.84.7"
}
],
"volumeMounts": [
{ "name": "envproxy",
"mountPath": "/etc/environment_proxy"
},
{
"name": "docker",
"mountPath": "/var/lib/docker"
}
],
"securityContext": {
"privileged": true
}
}
],
"volumes":[
{ "name": "envproxy",
"hostPath": {
"path": "/etc/environment_proxy"}
},
{
"name": "docker",
"emptyDir": {}
}
]
}
}
}
}