- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
运行 kubectl explain pod.spec.containers
显示:
volumeDevices <[]Object>
volumeDevices is the list of block devices to be used by the container.
This is a beta feature.
volumeMounts <[]Object>
Pod volumes to mount into the container's filesystem. Cannot be updated.
这两个容器属性之间有关系吗?
注意 kubectl version
显示:
Client Version: version.Info{Major:"1", Minor:"13", GitVersion:"v1.13.0", GitCommit:"ddf47ac13c1a9483ea035a79cd7c10005ff21a6d", GitTreeState:"clean", BuildDate:"2018-12-03T21:04:45Z", GoVersion:"go1.11.2", Compiler:"gc", Platform:"linux/amd64"}
Server Version: version.Info{Major:"1", Minor:"13", GitVersion:"v1.13.0", GitCommit:"ddf47ac13c1a9483ea035a79cd7c10005ff21a6d", GitTreeState:"clean", BuildDate:"2018-12-03T20:56:12Z", GoVersion:"go1.11.2", Compiler:"gc", Platform:"linux/amd64"}
最佳答案
'volumeDevices' 是 1.13 中新测试版功能的一部分,它允许 pod 访问原始 block 卷而不是挂载的文件系统卷。这对于一些高级应用程序很有用,例如可能具有自己的文件系统格式的数据库。
可以找到官方文档here虽然它似乎还没有为 1.13 更新。
关于kubernetes - "volumeDevices"与 "volumeMounts"与 k8s v1.13 有什么区别,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53774009/
我正在使用以下技术: Helm argocd k8s 我创建了一个 secret : ╰ kubectl create secret generic my-secret --from-file=
我正在尝试使用新的 subPath在 this 中实现的功能拉取请求(最近在 v1.3 中发布)。 但是,mount 的输出显示它忽略了 subPath , 为两个卷挂载挂载相同的 NFS 目录: n
我将使用 K8S 来编排 docker 容器。在k8s中,我需要从主机目录( /configs/nginx/cas-server.conf )复制一个文件到pod容器目录( /etc/nginx/ng
我正在使用 kops 在 AWS 上运行 Kubernetes 集群。我已将 EBS 卷安装到容器上,它在我的应用程序中可见,但它是只读的,因为我的应用程序没有以 root 身份运行。如何以 root
我有这样的部署: apiVersion: apps/v1 kind: Deployment spec: template: volumeMounts: - mountPath:
运行 kubectl explain pod.spec.containers 显示: volumeDevices volumeDevices is the list of bl
我正在尝试使用持久卷声明并面临这个问题 这是我的 postgres-deployment.yaml apiVersion: apps/v1 kind: Deployment metadata: n
在 airflow.conf 的 kubernetes 部分下,有一个为 dag 和日志安装 volumeMount 的选项,例如 [kubernetes] airflow_configmap = a
我一直在尝试使用HELM UPGRADE创建POD: helm upgrade --values=$(System.DefaultWorkingDirectory)/_NAME-deploy-CI/d
将此 values.yaml 用于 Prometheus-operator helm chart prometheus-operator: fullnameOverride: prometheus
我正在部署一个名为 soa-illidan-hub-service 的应用程序,在 kubernetes 版本 v1.16.0 中有一个持久卷。当我应用 yaml 时,它给我这个错误: Deploym
我正在尝试开始部署,但收到此错误 error: error validating "httpd-basic-deployment.yaml": error validating data: Valid
我是一名优秀的程序员,十分优秀!