mirror of https://github.com/k3s-io/k3s
24 lines
396 B
JSON
24 lines
396 B
JSON
{
|
|
"apiVersion": "v1",
|
|
"kind": "Pod",
|
|
"metadata": {
|
|
"name": "busybox",
|
|
"namespace": "static-pods"
|
|
},
|
|
"spec": {
|
|
"containers": [
|
|
{
|
|
"image": "busybox",
|
|
"command": [
|
|
"sh",
|
|
"-c",
|
|
"exec tail -f /dev/null"
|
|
],
|
|
"imagePullPolicy": "IfNotPresent",
|
|
"name": "busybox"
|
|
}
|
|
],
|
|
"restartPolicy": "Always"
|
|
}
|
|
}
|