-
Notifications
You must be signed in to change notification settings - Fork 9
/
cron.json
45 lines (45 loc) · 940 Bytes
/
cron.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
{
"kind": "Deployment",
"apiVersion": "extensions/v1beta1",
"metadata": {
"name": "cron"
},
"spec": {
"replicas": 1,
"template": {
"metadata": {
"labels": {
"app": "cron",
"image": "master_cfc_8500_default_cron_latest"
}
},
"spec": {
"hostNetwork": false,
"containers": [
{
"name": "cron",
"image": "master.cfc:8500/default/cron:latest",
"imagePullPolicy": "Always",
"ports": [
{
"protocol": "TCP",
"containerPort": 80
}
],
"resources": {
"limits": {
"cpu": "0.5m",
"memory": "15Mi"
}
}
}
],
"imagePullSecrets": [
{
"name": "admin.registrykey"
}
]
}
}
}
}