如何在 kubernetes 集群中为 Persistent Volume provisioner 提供支持?
How to provide support for Persistent Volume provisioner within an kubernetes cluster?
好的,这可能是一个基本问题,但我是 kubernetes 的新手,并尝试使用 stable/wordpress 图表使用 helm 安装 wordpress,但我一直收到错误 "pod has unbound immediate PersistentVolumeClaims (repeated 2 times)" 是因为这里的要求 https://github.com/helm/charts/tree/master/stable/wordpress。 "PV provisioner support in the underlying infrastructure" 我如何在我的基础设施中启用它,我已经在 digitalocean 上跨三个节点设置了我的集群,我已经尝试搜索这方面的教程,但直到现在都没有运气。请让我知道我缺少什么,谢谢。
PersistentVolume 类型作为插件实现。 Kubernetes 目前支持以下插件:
GCEPersistentDisk
AWSElasticBlockStore
AzureFile
AzureDisk
FC (Fibre Channel)
Flexvolume
Flocker
NFS
iSCSI
RBD (Ceph Block Device)
CephFS
Cinder (OpenStack block storage)
Glusterfs
VsphereVolume
Quobyte Volumes
HostPath (Single node testing only – local storage is not supported in any way and WILL NOT WORK in a multi-node cluster)
Portworx Volumes
ScaleIO Volumes
StorageOS
您可以使用这些插件启用对 PV 或动态 PV 的支持。
在 Digital Ocean 上,您可以对卷使用块存储。
可以为 Dynamic Volume Provisioning 设置 Kubernetes。这将允许 Chart 使用默认配置 运行 完成,因为 PV 将按需供应。
好的,这可能是一个基本问题,但我是 kubernetes 的新手,并尝试使用 stable/wordpress 图表使用 helm 安装 wordpress,但我一直收到错误 "pod has unbound immediate PersistentVolumeClaims (repeated 2 times)" 是因为这里的要求 https://github.com/helm/charts/tree/master/stable/wordpress。 "PV provisioner support in the underlying infrastructure" 我如何在我的基础设施中启用它,我已经在 digitalocean 上跨三个节点设置了我的集群,我已经尝试搜索这方面的教程,但直到现在都没有运气。请让我知道我缺少什么,谢谢。
PersistentVolume 类型作为插件实现。 Kubernetes 目前支持以下插件:
GCEPersistentDisk
AWSElasticBlockStore
AzureFile
AzureDisk
FC (Fibre Channel)
Flexvolume
Flocker
NFS
iSCSI
RBD (Ceph Block Device)
CephFS
Cinder (OpenStack block storage)
Glusterfs
VsphereVolume
Quobyte Volumes
HostPath (Single node testing only – local storage is not supported in any way and WILL NOT WORK in a multi-node cluster)
Portworx Volumes
ScaleIO Volumes
StorageOS
您可以使用这些插件启用对 PV 或动态 PV 的支持。
在 Digital Ocean 上,您可以对卷使用块存储。
可以为 Dynamic Volume Provisioning 设置 Kubernetes。这将允许 Chart 使用默认配置 运行 完成,因为 PV 将按需供应。