gpt4 book ai didi

kubernetes - kubernetes-通过命令进行卷映射

转载 作者:行者123 更新时间:2023-12-02 11:44:57 25 4
gpt4 key购买 nike

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

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

最佳答案

without using yaml file



从技术上讲,是的:您需要一个json文件,如“ Create kubernetes pod with volume using kubectl run ”所示

参见 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

关于kubernetes - kubernetes-通过命令进行卷映射,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49608070/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com