mirror of
https://github.com/ceph/ceph-csi.git
synced 2024-11-18 04:10:22 +00:00
29 lines
441 B
JSON
29 lines
441 B
JSON
{
|
|
"kind": "Pod",
|
|
"apiVersion": "v1",
|
|
"metadata": {
|
|
"name": "zookeeper",
|
|
"labels": {
|
|
"name": "zookeeper"
|
|
}
|
|
},
|
|
"spec": {
|
|
"containers": [
|
|
{
|
|
"name": "zookeeper",
|
|
"image": "mattf/zookeeper",
|
|
"ports": [
|
|
{
|
|
"containerPort": 2181
|
|
}
|
|
],
|
|
"resources": {
|
|
"limits": {
|
|
"cpu": "100m"
|
|
}
|
|
}
|
|
}
|
|
]
|
|
}
|
|
}
|