38

我知道您可以使用 kubectl run 创建一个带有 Deployment/Job 的 pod。但是是否可以创建一个附加卷的卷?我尝试运行此命令:

kubectl run -i --rm --tty ubuntu --overrides='{ "apiVersion":"batch/v1", "spec": {"containers": {"image": "ubuntu:14.04", "volumeMounts": {"mountPath": "/home/store", "name":"store"}}, "volumes":{"name":"store", "emptyDir":{}}}}' --image=ubuntu:14.04 --restart=Never -- bash

但是该卷不会出现在交互式 bash 中。

有没有更好的方法来创建一个可以附加到卷上的 pod?

4

1 回答 1

50

您的 JSON 覆盖指定不正确。不幸的是 kubectl run 只是忽略了它不理解的字段。

kubectl run -i --rm --tty ubuntu --overrides='
{
  "apiVersion": "batch/v1",
  "spec": {
    "template": {
      "spec": {
        "containers": [
          {
            "name": "ubuntu",
            "image": "ubuntu:14.04",
            "args": [
              "bash"
            ],
            "stdin": true,
            "stdinOnce": true,
            "tty": true,
            "volumeMounts": [{
              "mountPath": "/home/store",
              "name": "store"
            }]
          }
        ],
        "volumes": [{
          "name":"store",
          "emptyDir":{}
        }]
      }
    }
  }
}
'  --image=ubuntu:14.04 --restart=Never -- bash

为了调试这个问题,我运行了你指定的命令,然后在另一个终端运行:

kubectl get job ubuntu -o json

从那里您可以看到实际的作业结构与您的 json 覆盖不同(您缺少嵌套的模板/规范,并且卷、volumeMounts 和容器需要是数组)。

于 2016-06-03T19:07:20.627 回答