mirror of https://github.com/k3s-io/k3s
29 lines
964 B
YAML
29 lines
964 B
YAML
apiVersion: apiextensions.k8s.io/v1beta1
|
|
kind: CustomResourceDefinition
|
|
metadata:
|
|
name: csidrivers.csi.storage.k8s.io
|
|
labels:
|
|
addonmanager.kubernetes.io/mode: Reconcile
|
|
spec:
|
|
group: csi.storage.k8s.io
|
|
names:
|
|
kind: CSIDriver
|
|
plural: csidrivers
|
|
scope: Cluster
|
|
validation:
|
|
openAPIV3Schema:
|
|
properties:
|
|
spec:
|
|
description: Specification of the CSI Driver.
|
|
properties:
|
|
attachRequired:
|
|
description: Indicates this CSI volume driver requires an attach operation,
|
|
and that Kubernetes should call attach and wait for any attach operation
|
|
to complete before proceeding to mount.
|
|
type: boolean
|
|
podInfoOnMountVersion:
|
|
description: Indicates this CSI volume driver requires additional pod
|
|
information (like podName, podUID, etc.) during mount operations.
|
|
type: string
|
|
version: v1alpha1
|