forked from uber/kraken
-
Notifications
You must be signed in to change notification settings - Fork 0
/
demo.json
34 lines (34 loc) · 824 Bytes
/
demo.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
{
"apiVersion": "apps/v1",
"kind": "Deployment",
"metadata": {
"name": "demo"
},
"spec": {
"replicas": 1,
"selector": {
"matchLabels": {
"demo": "true"
}
},
"template": {
"metadata": {
"labels": {
"demo": "true"
}
},
"spec": {
"containers": [
{
"name": "main",
"image": "127.0.0.1:30081/library/busybox:latest",
"command": [
"/bin/sh", "-c",
"while true; do sleep 10; done"
]
}
]
}
}
}
}