- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在 OpenShift 上部署了一个 postgres pod 和一个我认为我正确附加的 PVC,但我可能错了。这是我的 PVC,它已正确绑定(bind) -
apiVersion: v1
kind: PersistentVolumeClaim
metadata:
name: postgres-pvc
spec:
accessModes:
- ReadWriteOnce
resources:
requests:
storage: 1Gi
storageClassName: xxxxx
我使用 PGDATA
env 设置为 /var/lib/postgresql/pgdata
创建了 postgres pod,并像这样安装了 PVC -
oc set volume dc/postgres --add --name=postgres-pvc --type=persistentVolumeClaim \
--claim-name=postgres-pvc --mount-path=/var/lib/postgresql/pgdata --containers=postgres
我最初尝试通过覆盖原始容器卷将 PVC 附加到 /var/lib/postgresql/data
但它说存在一些问题,例如直接安装到该 data
文件夹路径,所以这就是我使用 pgdata
的原因。
oc set volume dc/postgres --add --overwrite --name=postgres-volume-1 --type=persistentVolumeClaim \
--claim-name=postgres-pvc --mount-path=/var/lib/postgresql/data --containers=postgres
我现在遇到的错误是,当我尝试通过 DC 扩展 pod/添加副本时,出现以下错误 -
Unable to attach or mount volumes: unmounted volumes=[postgres-pvc], unattached volumes=[postgres-volume-1 postgres-pvc postgres-token-h7jvr]: timed out waiting for the condition
和
Error while attaching the device pv pvc-b87b49ff-2bce-495c-b17f-b45f51eab27b cannot be attached to the node xx.xx.xxx.xx. Error: PV pvc-b87b49ff-2bce-495c-b17f-b45f51eab27b is already attached to another node xx.xx.xxx.x and there are active pods [postgres-7-6p6sz] using that
是不是因为我的 PVC 安装不正确?还是我需要创建一个新的 PVC,然后手动将新的 pod 更新到那个新创建的 PVC?
最佳答案
正如你所看到的错误
already attached to another node xx.xx.xxx.x and there are active pods [postgres-7-6p6sz] using that
您正在使用 block 存储作为 pv,它具有 ReadWriteOnce
的 accessModes 这意味着在任何给定时间卷都可以附加到单个 kubernetes 节点,然后在该节点上, pod 可以安装它。现在如果你想附加到另一个 pod,你需要删除现有的 pod,这将使 pv 与以前的节点分离,重新附加到新节点。
了解更多详情 persistent-volumes/
关于postgresql - 无法在 OpenShift 上附加或装载 Postgres pod 副本的卷,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/67302877/
我的应用程序在 Docker 容器中运行,并且我在其中使用离线部署 docker save我的开发机器上的图像并将其与应用程序捆绑在一起 通过 U 盘手动传输 tarfile 包和我的应用程序 doc
我有这个中间人项目。 我用 bower 给它添加了基础。 所以我的文件夹结构是这样的: -myproject -source -bower_components -foundation(c
我正在使用 linux RedHat 7。 我没有选项可以更改我的服务器的配置。 当我跑 docker load -i images.tar Error processing tar file(exi
我在治具方面做错了。 我必须在契约(Contract)中包含许多契约(Contract)项的模型中进行建模,并尝试为其加载夹具 App.Contract = DS.Model.extend({ c
我是一名优秀的程序员,十分优秀!