mirror of https://github.com/k3s-io/k3s
37 lines
637 B
JSON
37 lines
637 B
JSON
{
|
|
"kind": "Pod",
|
|
"apiVersion": "v1",
|
|
"metadata": {
|
|
"name": "explorer"
|
|
},
|
|
"spec": {
|
|
"containers": [
|
|
{
|
|
"name": "explorer",
|
|
"image": "gcr.io/google_containers/explorer:1.0",
|
|
"args": [
|
|
"-port=8080"
|
|
],
|
|
"ports": [
|
|
{
|
|
"containerPort": 8080,
|
|
"protocol": "TCP"
|
|
}
|
|
],
|
|
"volumeMounts": [
|
|
{
|
|
"name": "test-volume",
|
|
"mountPath": "/mount/test-volume"
|
|
}
|
|
]
|
|
}
|
|
],
|
|
"volumes": [
|
|
{
|
|
"name": "test-volume",
|
|
"emptyDir": {}
|
|
}
|
|
]
|
|
}
|
|
}
|