31 lines
1.2 KiB
YAML
31 lines
1.2 KiB
YAML
# pkg/linode-bs/deploy/kubernetes/02-csi-driver.yaml
|
|
# Requires CSIDriverRegistry feature gate (alpha in 1.12)
|
|
# xref: https://raw.githubusercontent.com/kubernetes/csi-api/master/pkg/crd/manifests/csinodeinfo.yaml
|
|
apiVersion: apiextensions.k8s.io/v1beta1
|
|
kind: CustomResourceDefinition
|
|
metadata:
|
|
name: csidrivers.csi.storage.k8s.io
|
|
labels:
|
|
addonmanager.kubernetes.io/mode: Reconcile
|
|
spec:
|
|
version: v1alpha1
|
|
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
|