- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试在现有存储类名称之上/基于现有存储类名称创建一个持久卷。然后我想把PVC贴在上面;使他们被束缚。运行下面的代码,会给我我想要的“sftp-pv-claim”,但它没有绑定(bind)到我的 PV(“sftp-pv-storage”)。它的状态是“待定”。
我收到的错误消息是:“PersistentVolume “sftp-pv-storage”无效:规范:必需值:必须指定卷类型”。如果有人能指出我为什么会收到错误消息的正确方向,我们将不胜感激。
规范:
我正在使用 Helm 图创建 PV 和 PVC。
我正在使用 Rancher UI 来查看它们是否被绑定(bind)以及是否生成了 PV。
我使用的存储是带有 Rook 的 Ceph(允许动态配置 PV)。
错误:
我收到的错误消息是:“PersistentVolume “sftp-pv-storage”无效:规范:必需值:必须指定卷类型”。
尝试:
我试过使用 claimRef 和 matchLabels 无济于事。
我在我的 PV 规范中添加了“volumetype: none”。
如果我将 "hostPath: path: "/mnt/data""作为规范添加到 PV,它将显示为可用 PV(具有本地节点路径),但我的 PVC 未绑定(bind)到它。 (另外,出于部署目的,我不想使用 hostPath。
## Create Persistent Storage for SFTP
## Ref: https://www.cloudtechnologyexperts.com/kubernetes-persistent-volume-with-rook/
kind: PersistentVolume
apiVersion: v1
metadata:
name: sftp-pv-storage
labels:
type: local
name: sftp-pv-storage
spec:
storageClassName: rook-ceph-block
capacity:
storage: 10Gi
accessModes:
- ReadWriteMany
persistentVolumeReclaimPolicy: Retain
allowVolumeExpansion: true
volumetype: none
---
## Create Claim (links user to PV)
## ==> If pod is created, need to automatically create PVC for user (without their input)
kind: PersistentVolumeClaim
apiVersion: v1
metadata:
name: sftp-pv-claim
spec:
storageClassName: sftp-pv-storage
accessModes:
- ReadWriteOnce
resources:
requests:
storage: 2Gi
最佳答案
PersistentVolume“sftp-pv-storage”无效:spec:Requiredvalue:必须指定卷类型。
在 PV list 中,您必须提供卷的类型。描述了所有支持类型的列表here .
当您使用 Ceph
我假设你会使用 CephFS
.
A cephfs volume allows an existing CephFS volume to be mounted into your Pod. Unlike emptyDir, which is erased when a Pod is removed, the contents of a cephfs volume are preserved and the volume is merely unmounted. This means that a CephFS volume can be pre-populated with data, and that data can be “handed off” between Pods. CephFS can be mounted by multiple writers simultaneously.
CephFS
的示例您可以在
Github 中找到.
storageClassName
.
A claim can request a particular class by specifying the name of a StorageClass using the attribute storageClassName. Only PVs of the requested class, ones with the same storageClassName as the PVC, can be bound to the PVC.
storageClassName
您的
PV
和
PVC
是不同的。
spec:
storageClassName: rook-ceph-block
spec:
storageClassName: sftp-pv-storage
关于kubernetes - PersistentVolume 无效 : spec: Required value: must specify a volume type,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58226536/
我是一名优秀的程序员,十分优秀!