21 lines
355 B
JSON
21 lines
355 B
JSON
{
|
|
"kind": "Pod",
|
|
"apiVersion": "v1",
|
|
"metadata":{
|
|
"name": "curlpod",
|
|
"namespace": "default",
|
|
"labels": {
|
|
"name": "examplepod"
|
|
}
|
|
},
|
|
"spec": {
|
|
"containers": [{
|
|
"name": "nginx",
|
|
"image": "nginx",
|
|
"ports": [{"containerPort": 80}]
|
|
}]
|
|
}
|
|
}
|
|
|
|
|