kubernetes - 通过命令进行卷映射

kubernetes - volume mapping via command

我需要在启动容器时映射一个卷,我可以使用 yaml 文件来完成。

有没有一种方法可以在不使用 yaml 文件的情况下通过命令行完成卷映射?就像
-v docker 中的选项?

without using yaml file

从技术上讲,是的:您需要一个 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