Warning: file_get_contents(/data/phpspider/zhask/data//catemap/7/kubernetes/5.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
kubernetes对象的完整列表在哪里?_Kubernetes - Fatal编程技术网

kubernetes对象的完整列表在哪里?

kubernetes对象的完整列表在哪里?,kubernetes,Kubernetes,库伯内特斯似乎有很多东西。我似乎在任何地方都找不到完整的对象列表。在谷歌上短暂搜索后,我可以找到提到kubernetes对象子集的结果。对象的完整列表是否记录在某个地方,可能在源代码中?谢谢。以下命令列出了所有受支持的API版本: $ kubectl api-versions 您可以从kube-apiserverrestapi获得一些详细信息: 打开与kube apiserver的连接 $ kubectl proxy & 现在,您可以发现API资源: $ kubectl explai

库伯内特斯似乎有很多东西。我似乎在任何地方都找不到完整的对象列表。在谷歌上短暂搜索后,我可以找到提到kubernetes对象子集的结果。对象的完整列表是否记录在某个地方,可能在源代码中?谢谢。

以下命令列出了所有受支持的API版本:

$ kubectl api-versions
您可以从
kube-apiserver
restapi获得一些详细信息:

打开与kube apiserver的连接

$ kubectl proxy &
现在,您可以发现API资源:

$ kubectl explain rc
$ kubectl explain rc.spec
$ kubectl explain rc.spec.selector
此请求提供apiserver上的所有现有路径(JSON格式):

您可以请求有关特定路径的详细信息:

curl http://localhost:8001/api/v1

...
    {
      "name": "configmaps",
      "singularName": "",
      "namespaced": true,
      "kind": "ConfigMap",
      "verbs": [
        "create",
        "delete",
        "deletecollection",
        "get",
        "list",
        "patch",
        "update",
        "watch"
      ],
      "shortNames": [
        "cm"
      ]
    },
...
此信息帮助您编写
kubectl
命令,例如:

$ kubectl get configmaps
$ kubectl get cm

但是您可能会发现使用
kubectl explain
提供的内置文档更方便

例如,此命令显示Kubernetes对象的列表:

$ kubectl explain
您可以获得任何列出的资源的详细信息:

$ kubectl explain rc
$ kubectl explain rc.spec
$ kubectl explain rc.spec.selector
也可以通过添加--recursive标志打印对象的完整YAML模板(或部分):

$ kubectl explain rc --recursive
$ kubectl explain rc.metadata --recursive
描述中的链接指向有关特定对象的文档。例如:

DESCRIPTION:
     If the Labels of a ReplicationController are empty, they are defaulted to
     be the same as the Pod(s) that the replication controller manages. Standard
     object's metadata. More info:
     https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata
     ObjectMeta is metadata that all persisted resources must have, which
     includes all objects users must create.
如果您需要完整的描述和示例,您可以在

你也可能会发现有帮助或

更新:使用以下一行程序,您可以列出按API版本分组的所有对象(包括CRD)。检查一个对象是否存在于多个API组中,从而在其清单中应用多个apiVersion可能会很有用。(对于不同版本,对象配置可能略有不同。)

部分示例输出:

...
apiVersion: autoscaling/v1
NAME                       SHORTNAMES   APIGROUP      NAMESPACED   KIND
horizontalpodautoscalers   hpa          autoscaling   true         HorizontalPodAutoscaler

apiVersion: autoscaling/v2beta1
NAME                       SHORTNAMES   APIGROUP      NAMESPACED   KIND
horizontalpodautoscalers   hpa          autoscaling   true         HorizontalPodAutoscaler

apiVersion: autoscaling/v2beta2
NAME                       SHORTNAMES   APIGROUP      NAMESPACED   KIND
horizontalpodautoscalers   hpa          autoscaling   true         HorizontalPodAutoscaler

apiVersion: batch/v1
NAME       SHORTNAMES   APIGROUP   NAMESPACED   KIND
cronjobs   cj           batch      true         CronJob
jobs                    batch      true         Job

apiVersion: batch/v1beta1
NAME       SHORTNAMES   APIGROUP   NAMESPACED   KIND
cronjobs   cj           batch      true         CronJob
jobs                    batch      true         Job

...

以下命令成功显示所有kubernetes对象

kubectl api-resources
示例

[root@hsk-controller ~]# kubectl api-resources
NAME                              SHORTNAMES       KIND
bindings                                           Binding
componentstatuses                 cs               ComponentStatus
configmaps                        cm               ConfigMap
endpoints                         ep               Endpoints
events                            ev               Event
limitranges                       limits           LimitRange
namespaces                        ns               Namespace
nodes                             no               Node
persistentvolumeclaims            pvc              PersistentVolumeClaim
persistentvolumes                 pv               PersistentVolume
pods                              po               Pod
podtemplates                                       PodTemplate
replicationcontrollers            rc               ReplicationController
resourcequotas                    quota            ResourceQuota
secrets                                            Secret
serviceaccounts                   sa               ServiceAccount
services                          svc              Service
initializerconfigurations                          InitializerConfiguration
mutatingwebhookconfigurations                      MutatingWebhookConfiguration
validatingwebhookconfigurations                    ValidatingWebhookConfiguration
customresourcedefinitions         crd,crds         CustomResourceDefinition
apiservices                                        APIService
controllerrevisions                                ControllerRevision
daemonsets                        ds               DaemonSet
deployments                       deploy           Deployment
replicasets                       rs               ReplicaSet
statefulsets                      sts              StatefulSet
tokenreviews                                       TokenReview
localsubjectaccessreviews                          LocalSubjectAccessReview
selfsubjectaccessreviews                           SelfSubjectAccessReview
selfsubjectrulesreviews                            SelfSubjectRulesReview
subjectaccessreviews                               SubjectAccessReview
horizontalpodautoscalers          hpa              HorizontalPodAutoscaler
cronjobs                          cj               CronJob
jobs                                               Job
brpolices                         br,bp            BrPolicy
clusters                          rcc              Cluster
filesystems                       rcfs             Filesystem
objectstores                      rco              ObjectStore
pools                             rcp              Pool
certificatesigningrequests        csr              CertificateSigningRequest
leases                                             Lease
events                            ev               Event
daemonsets                        ds               DaemonSet
deployments                       deploy           Deployment
ingresses                         ing              Ingress
networkpolicies                   netpol           NetworkPolicy
podsecuritypolicies               psp              PodSecurityPolicy
replicasets                       rs               ReplicaSet
nodes                                              NodeMetrics
pods                                               PodMetrics
networkpolicies                   netpol           NetworkPolicy
poddisruptionbudgets              pdb              PodDisruptionBudget
podsecuritypolicies               psp              PodSecurityPolicy
clusterrolebindings                                ClusterRoleBinding
clusterroles                                       ClusterRole
rolebindings                                       RoleBinding
roles                                              Role
volumes                           rv               Volume
priorityclasses                   pc               PriorityClass
storageclasses                    sc               StorageClass
volumeattachments                                  VolumeAttachment
注意:kubernate版本是v1.12*

web

资源列表

$ kubectl api-resources -o wide 
    NAME                              SHORTNAMES   APIGROUP                       NAMESPACED   KIND                             VERBS
    bindings                                                                      true         Binding                          [create]
    componentstatuses                 cs                                          false        ComponentStatus                  [get list]
    configmaps                        cm                                          true         ConfigMap                        [create delete deletecollection get list patch update watch]
    endpoints                         ep                                          true         Endpoints                        [create delete deletecollection get list patch update watch]
    events                            ev                                          true         Event                            [create delete deletecollection get list patch update watch]
    limitranges                       limits                                      true         LimitRange                       [create delete deletecollection get list patch update watch]
    namespaces                        ns                                          false        Namespace                        [create delete get list patch update watch]
    nodes                             no                                          false        Node                             [create delete deletecollection get list patch update watch]
    persistentvolumeclaims            pvc                                         true         PersistentVolumeClaim            [create delete deletecollection get list patch update watch]
    persistentvolumes                 pv                                          false        PersistentVolume                 [create delete deletecollection get list patch update watch]
    pods                              po                                          true         Pod                              [create delete deletecollection get list patch update watch]
    podtemplates                                                                  true         PodTemplate                      [create delete deletecollection get list patch update watch]
    replicationcontrollers            rc                                          true         ReplicationController            [create delete deletecollection get list patch update watch]
    resourcequotas                    quota                                       true         ResourceQuota                    [create delete deletecollection get list patch update watch]
    secrets                                                                       true         Secret                           [create delete deletecollection get list patch update watch]
    serviceaccounts                   sa                                          true         ServiceAccount                   [create delete deletecollection get list patch update watch]
    services                          svc                                         true         Service                          [create delete get list patch update watch]
    mutatingwebhookconfigurations                  admissionregistration.k8s.io   false        MutatingWebhookConfiguration     [create delete deletecollection get list patch update watch]
    validatingwebhookconfigurations                admissionregistration.k8s.io   false        ValidatingWebhookConfiguration   [create delete deletecollection get list patch update watch]
    customresourcedefinitions         crd,crds     apiextensions.k8s.io           false        CustomResourceDefinition         [create delete deletecollection get list patch update watch]
    apiservices                                    apiregistration.k8s.io         false        APIService                       [create delete deletecollection get list patch update watch]
    controllerrevisions                            apps                           true         ControllerRevision               [create delete deletecollection get list patch update watch]
    daemonsets                        ds           apps                           true         DaemonSet                        [create delete deletecollection get list patch update watch]
    deployments                       deploy       apps                           true         Deployment                       [create delete deletecollection get list patch update watch]
    replicasets                       rs           apps                           true         ReplicaSet                       [create delete deletecollection get list patch update watch]
    statefulsets                      sts          apps                           true         StatefulSet                      [create delete deletecollection get list patch update watch]
    tokenreviews                                   authentication.k8s.io          false        TokenReview                      [create]
    localsubjectaccessreviews                      authorization.k8s.io           true         LocalSubjectAccessReview         [create]
    selfsubjectaccessreviews                       authorization.k8s.io           false        SelfSubjectAccessReview          [create]
    selfsubjectrulesreviews                        authorization.k8s.io           false        SelfSubjectRulesReview           [create]
    subjectaccessreviews                           authorization.k8s.io           false        SubjectAccessReview              [create]
    horizontalpodautoscalers          hpa          autoscaling                    true         HorizontalPodAutoscaler          [create delete deletecollection get list patch update watch]
    cronjobs                          cj           batch                          true         CronJob                          [create delete deletecollection get list patch update watch]
    jobs                                           batch                          true         Job                              [create delete deletecollection get list patch update watch]
    certificatesigningrequests        csr          certificates.k8s.io            false        CertificateSigningRequest        [create delete deletecollection get list patch update watch]
    leases                                         coordination.k8s.io            true         Lease                            [create delete deletecollection get list patch update watch]
    events                            ev           events.k8s.io                  true         Event                            [create delete deletecollection get list patch update watch]
    ingresses                         ing          extensions                     true         Ingress                          [create delete deletecollection get list patch update watch]
    ingresses                         ing          networking.k8s.io              true         Ingress                          [create delete deletecollection get list patch update watch]
    networkpolicies                   netpol       networking.k8s.io              true         NetworkPolicy                    [create delete deletecollection get list patch update watch]
    runtimeclasses                                 node.k8s.io                    false        RuntimeClass                     [create delete deletecollection get list patch update watch]
    poddisruptionbudgets              pdb          policy                         true         PodDisruptionBudget              [create delete deletecollection get list patch update watch]
    podsecuritypolicies               psp          policy                         false        PodSecurityPolicy                [create delete deletecollection get list patch update watch]
    clusterrolebindings                            rbac.authorization.k8s.io      false        ClusterRoleBinding               [create delete deletecollection get list patch update watch]
    clusterroles                                   rbac.authorization.k8s.io      false        ClusterRole                      [create delete deletecollection get list patch update watch]
    rolebindings                                   rbac.authorization.k8s.io      true         RoleBinding                      [create delete deletecollection get list patch update watch]
    roles                                          rbac.authorization.k8s.io      true         Role                             [create delete deletecollection get list patch update watch]
    priorityclasses                   pc           scheduling.k8s.io              false        PriorityClass                    [create delete deletecollection get list patch update watch]
    csidrivers                                     storage.k8s.io                 false        CSIDriver                        [create delete deletecollection get list patch update watch]
    csinodes                                       storage.k8s.io                 false        CSINode                          [create delete deletecollection get list patch update watch]
    storageclasses                    sc           storage.k8s.io                 false        StorageClass                     [create delete deletecollection get list patch update watch]
    volumeattachments                              storage.k8s.io                 false        VolumeAttachment                 [create delete deletecollection get list patch update watch]
    $ kubectl explain --help
    List the fields for supported resources

     This command describes the fields associated with each supported API resource. Fields are identified via a simple JSONPath identifier:

      <type>.<fieldName>[.<fieldName>]

 Add the --recursive flag to display all of the fields at once without descriptions. Information about each field is retrieved from the server in OpenAPI format.

Use "kubectl api-resources" for a complete list of supported resources.

Examples:
  # Get the documentation of the resource and its fields
  kubectl explain pods

  # Get the documentation of a specific field of a resource
  kubectl explain pods.spec.containers

Options:
      --api-version='': Get different explanations for particular API version
      --recursive=false: Print the fields of fields (Currently only 1 level deep)

Usage:
  kubectl explain RESOURCE [options]

Use "kubectl options" for a list of global command-line options (applies to all commands).
每个对象的详细信息

$ kubectl api-resources -o wide 
    NAME                              SHORTNAMES   APIGROUP                       NAMESPACED   KIND                             VERBS
    bindings                                                                      true         Binding                          [create]
    componentstatuses                 cs                                          false        ComponentStatus                  [get list]
    configmaps                        cm                                          true         ConfigMap                        [create delete deletecollection get list patch update watch]
    endpoints                         ep                                          true         Endpoints                        [create delete deletecollection get list patch update watch]
    events                            ev                                          true         Event                            [create delete deletecollection get list patch update watch]
    limitranges                       limits                                      true         LimitRange                       [create delete deletecollection get list patch update watch]
    namespaces                        ns                                          false        Namespace                        [create delete get list patch update watch]
    nodes                             no                                          false        Node                             [create delete deletecollection get list patch update watch]
    persistentvolumeclaims            pvc                                         true         PersistentVolumeClaim            [create delete deletecollection get list patch update watch]
    persistentvolumes                 pv                                          false        PersistentVolume                 [create delete deletecollection get list patch update watch]
    pods                              po                                          true         Pod                              [create delete deletecollection get list patch update watch]
    podtemplates                                                                  true         PodTemplate                      [create delete deletecollection get list patch update watch]
    replicationcontrollers            rc                                          true         ReplicationController            [create delete deletecollection get list patch update watch]
    resourcequotas                    quota                                       true         ResourceQuota                    [create delete deletecollection get list patch update watch]
    secrets                                                                       true         Secret                           [create delete deletecollection get list patch update watch]
    serviceaccounts                   sa                                          true         ServiceAccount                   [create delete deletecollection get list patch update watch]
    services                          svc                                         true         Service                          [create delete get list patch update watch]
    mutatingwebhookconfigurations                  admissionregistration.k8s.io   false        MutatingWebhookConfiguration     [create delete deletecollection get list patch update watch]
    validatingwebhookconfigurations                admissionregistration.k8s.io   false        ValidatingWebhookConfiguration   [create delete deletecollection get list patch update watch]
    customresourcedefinitions         crd,crds     apiextensions.k8s.io           false        CustomResourceDefinition         [create delete deletecollection get list patch update watch]
    apiservices                                    apiregistration.k8s.io         false        APIService                       [create delete deletecollection get list patch update watch]
    controllerrevisions                            apps                           true         ControllerRevision               [create delete deletecollection get list patch update watch]
    daemonsets                        ds           apps                           true         DaemonSet                        [create delete deletecollection get list patch update watch]
    deployments                       deploy       apps                           true         Deployment                       [create delete deletecollection get list patch update watch]
    replicasets                       rs           apps                           true         ReplicaSet                       [create delete deletecollection get list patch update watch]
    statefulsets                      sts          apps                           true         StatefulSet                      [create delete deletecollection get list patch update watch]
    tokenreviews                                   authentication.k8s.io          false        TokenReview                      [create]
    localsubjectaccessreviews                      authorization.k8s.io           true         LocalSubjectAccessReview         [create]
    selfsubjectaccessreviews                       authorization.k8s.io           false        SelfSubjectAccessReview          [create]
    selfsubjectrulesreviews                        authorization.k8s.io           false        SelfSubjectRulesReview           [create]
    subjectaccessreviews                           authorization.k8s.io           false        SubjectAccessReview              [create]
    horizontalpodautoscalers          hpa          autoscaling                    true         HorizontalPodAutoscaler          [create delete deletecollection get list patch update watch]
    cronjobs                          cj           batch                          true         CronJob                          [create delete deletecollection get list patch update watch]
    jobs                                           batch                          true         Job                              [create delete deletecollection get list patch update watch]
    certificatesigningrequests        csr          certificates.k8s.io            false        CertificateSigningRequest        [create delete deletecollection get list patch update watch]
    leases                                         coordination.k8s.io            true         Lease                            [create delete deletecollection get list patch update watch]
    events                            ev           events.k8s.io                  true         Event                            [create delete deletecollection get list patch update watch]
    ingresses                         ing          extensions                     true         Ingress                          [create delete deletecollection get list patch update watch]
    ingresses                         ing          networking.k8s.io              true         Ingress                          [create delete deletecollection get list patch update watch]
    networkpolicies                   netpol       networking.k8s.io              true         NetworkPolicy                    [create delete deletecollection get list patch update watch]
    runtimeclasses                                 node.k8s.io                    false        RuntimeClass                     [create delete deletecollection get list patch update watch]
    poddisruptionbudgets              pdb          policy                         true         PodDisruptionBudget              [create delete deletecollection get list patch update watch]
    podsecuritypolicies               psp          policy                         false        PodSecurityPolicy                [create delete deletecollection get list patch update watch]
    clusterrolebindings                            rbac.authorization.k8s.io      false        ClusterRoleBinding               [create delete deletecollection get list patch update watch]
    clusterroles                                   rbac.authorization.k8s.io      false        ClusterRole                      [create delete deletecollection get list patch update watch]
    rolebindings                                   rbac.authorization.k8s.io      true         RoleBinding                      [create delete deletecollection get list patch update watch]
    roles                                          rbac.authorization.k8s.io      true         Role                             [create delete deletecollection get list patch update watch]
    priorityclasses                   pc           scheduling.k8s.io              false        PriorityClass                    [create delete deletecollection get list patch update watch]
    csidrivers                                     storage.k8s.io                 false        CSIDriver                        [create delete deletecollection get list patch update watch]
    csinodes                                       storage.k8s.io                 false        CSINode                          [create delete deletecollection get list patch update watch]
    storageclasses                    sc           storage.k8s.io                 false        StorageClass                     [create delete deletecollection get list patch update watch]
    volumeattachments                              storage.k8s.io                 false        VolumeAttachment                 [create delete deletecollection get list patch update watch]
    $ kubectl explain --help
    List the fields for supported resources

     This command describes the fields associated with each supported API resource. Fields are identified via a simple JSONPath identifier:

      <type>.<fieldName>[.<fieldName>]

 Add the --recursive flag to display all of the fields at once without descriptions. Information about each field is retrieved from the server in OpenAPI format.

Use "kubectl api-resources" for a complete list of supported resources.

Examples:
  # Get the documentation of the resource and its fields
  kubectl explain pods

  # Get the documentation of a specific field of a resource
  kubectl explain pods.spec.containers

Options:
      --api-version='': Get different explanations for particular API version
      --recursive=false: Print the fields of fields (Currently only 1 level deep)

Usage:
  kubectl explain RESOURCE [options]

Use "kubectl options" for a list of global command-line options (applies to all commands).
$kubectl解释--帮助
列出支持的资源的字段
此命令描述与每个支持的API资源关联的字段。字段通过简单的JSONPath标识符标识:
.[.]
添加--recursive标志以一次显示所有字段而不显示说明。有关每个字段的信息都是以OpenAPI格式从服务器检索的。
使用“kubectl api资源”获取受支持资源的完整列表。
示例:
#获取资源及其字段的文档
kubectl解释豆荚
#获取资源特定字段的文档
kubectl解释吊舱规格容器
选项:
--api版本='':获取特定api版本的不同解释
--recursive=false:打印字段的字段(当前只有1级深)
用法:
kubectl解释资源[选项]
使用“kubectl选项”查看全局命令行选项列表(适用于所有命令)。

同样的问题让我很沮丧。虽然您已经得到了一些很好的答案,但我想要的是1)按照api版本2)进行分组的内容,只是一个名称列表,而不是一本文档集。我一直在整理我们的RBAC,没有它有点棘手。找不到,下面是我制作的(v1.18.0):


回答得很好@VAS。kubectl api resources | cut-c92-150为我提供了所有kubernetes对象类型。找到51种类型,你说得对。从7月17日(PR#9437)开始,引入了命令“kubectl api资源”。“kubectl解释”的行为也发生了变化。我使用了Kubernetes cluster的旧版本来准备答案。
kubectl api resources-o name
将为您提供完全限定的资源名称。在我看来,这比所选名称更准确地回答了问题
 v1
        bindings
        componentstatuses
        configmaps
        endpoints
        events
        limitranges
        namespaces
        namespaces/finalize
        namespaces/status
        nodes
        nodes/proxy
        nodes/status
        persistentvolumeclaims
        persistentvolumeclaims/status
        persistentvolumes
        persistentvolumes/status
        pods
        pods/attach
        pods/binding
        pods/eviction
        pods/exec
        pods/log
        pods/portforward
        pods/proxy
        pods/status
        podtemplates
        replicationcontrollers
        replicationcontrollers/scale
        replicationcontrollers/status
        resourcequotas
        resourcequotas/status
        secrets
        serviceaccounts
        serviceaccounts/token
        services
        services/proxy
        services/status


 admissionregistration.k8s.io/v1
        mutatingwebhookconfigurations
        validatingwebhookconfigurations


 admissionregistration.k8s.io/v1beta1
        mutatingwebhookconfigurations
        validatingwebhookconfigurations


 apiextensions.k8s.io/v1
        customresourcedefinitions
        customresourcedefinitions/status


 apiextensions.k8s.io/v1beta1
        customresourcedefinitions
        customresourcedefinitions/status


 apiregistration.k8s.io/v1
        apiservices
        apiservices/status


 apiregistration.k8s.io/v1beta1
        apiservices
        apiservices/status


 apps/v1
        controllerrevisions
        daemonsets
        daemonsets/status
        deployments
        deployments/scale
        deployments/status
        replicasets
        replicasets/scale
        replicasets/status
        statefulsets
        statefulsets/scale
        statefulsets/status


 authentication.k8s.io/v1
        tokenreviews


 authentication.k8s.io/v1beta1
        tokenreviews


 authorization.k8s.io/v1
        localsubjectaccessreviews
        selfsubjectaccessreviews
        selfsubjectrulesreviews
        subjectaccessreviews


 authorization.k8s.io/v1beta1
        localsubjectaccessreviews
        selfsubjectaccessreviews
        selfsubjectrulesreviews
        subjectaccessreviews


 autoscaling/v1
        horizontalpodautoscalers
        horizontalpodautoscalers/status


 autoscaling/v2beta1
        horizontalpodautoscalers
        horizontalpodautoscalers/status


 autoscaling/v2beta2
        horizontalpodautoscalers
        horizontalpodautoscalers/status


 batch/v1
        jobs
        jobs/status


 batch/v1beta1
        cronjobs
        cronjobs/status


 certificates.k8s.io/v1beta1
        certificatesigningrequests
        certificatesigningrequests/approval
        certificatesigningrequests/status


 coordination.k8s.io/v1
        leases


 coordination.k8s.io/v1beta1
        leases


 crd.k8s.amazonaws.com/v1alpha1
        eniconfigs


 events.k8s.io/v1beta1
        events


 extensions/v1beta1
        ingresses
        ingresses/status


 metrics.k8s.io/v1beta1
        nodes
        pods


 networking.k8s.io/v1
        networkpolicies


 networking.k8s.io/v1beta1
        ingresses
        ingresses/status


 node.k8s.io/v1beta1
        runtimeclasses


 policy/v1beta1
        poddisruptionbudgets
        poddisruptionbudgets/status
        podsecuritypolicies


 rbac.authorization.k8s.io/v1
        clusterrolebindings
        clusterroles
        rolebindings
        roles


 rbac.authorization.k8s.io/v1beta1
        clusterrolebindings
        clusterroles
        rolebindings
        roles


 scheduling.k8s.io/v1
        priorityclasses


 scheduling.k8s.io/v1beta1
        priorityclasses


 storage.k8s.io/v1
        storageclasses
        volumeattachments
        volumeattachments/status


 storage.k8s.io/v1beta1
        csidrivers
        csinodes
        storageclasses
        volumeattachments