2

我遇到了动态存储配置程序的问题。我创建了存储类(已编辑)

kubectl get sc
NAME                 PROVISIONER             AGE
slow                 kubernetes.io/aws-ebs   12m
standard (default)   kubernetes.io/aws-ebs   14m

当我创建一个引用其中一个存储类的 pvc 时,它失败了

kubectl describe pvc mypvc
Name:          mypvc
Namespace:     default
StorageClass:  slow
Status:        Pending
Volume:
Labels:        <none>
Annotations:   <none>
Finalizers:    []
Capacity:
Access Modes:
Events:
Type     Reason              Age   From                         Message
----     ------              ----  ----                         -------
Warning  ProvisioningFailed  8s    persistentvolume-controller  
storageclass.storage.k8s.io "slow" not found

知道为什么它失败了

storageclass.storage.k8s.io "slow" not found

这是慢速sc的描述

apiVersion: storage.k8s.io/v1
kind: StorageClass
metadata:
  creationTimestamp: 2018-04-27T22:19:49Z
  name: slow
  resourceVersion: "665900"
  selfLink: /apis/storage.k8s.io/v1/storageclasses/slow
  uid: 19ab37b5-4a69-11e8-8f68-021e47d98090
parameters:
  fsType: ext4
  iopsPerGB: "10"
  type: io1
provisioner: kubernetes.io/aws-ebs
reclaimPolicy: Delete
4

1 回答 1

2

好的。我找到了答案。我没有启用存储 api 作为 apiserver 的 runtimeconfigs 的一部分

--runtime-config=storage.k8s.io/v1=true

添加上面的行解决了这个问题

于 2018-05-03T22:34:01.057 回答