mirror of
https://github.com/openshift/openshift-docs.git
synced 2026-02-05 12:46:18 +01:00
44 lines
1.1 KiB
Plaintext
44 lines
1.1 KiB
Plaintext
:_mod-docs-content-type: SNIPPET
|
|
.Example `LVMCluster` CR YAML file
|
|
[source,yaml]
|
|
----
|
|
apiVersion: lvm.topolvm.io/v1alpha1
|
|
kind: LVMCluster
|
|
metadata:
|
|
name: my-lvmcluster
|
|
spec:
|
|
tolerations:
|
|
- effect: NoSchedule
|
|
key: xyz
|
|
operator: Equal
|
|
value: "true"
|
|
storage:
|
|
deviceClasses:
|
|
- name: vg1
|
|
fstype: ext4 <1>
|
|
default: true
|
|
nodeSelector: <1>
|
|
nodeSelectorTerms:
|
|
- matchExpressions:
|
|
- key: mykey
|
|
operator: In
|
|
values:
|
|
- ssd
|
|
deviceSelector: <1>
|
|
paths:
|
|
- /dev/disk/by-path/pci-0000:87:00.0-nvme-1
|
|
- /dev/disk/by-path/pci-0000:88:00.0-nvme-1
|
|
optionalPaths:
|
|
- /dev/disk/by-path/pci-0000:89:00.0-nvme-1
|
|
- /dev/disk/by-path/pci-0000:90:00.0-nvme-1
|
|
forceWipeDevicesAndDestroyAllData: true
|
|
thinPoolConfig:
|
|
name: thin-pool-1
|
|
sizePercent: 90 <1>
|
|
overprovisionRatio: 10
|
|
chunkSize: 128Ki <1>
|
|
chunkSizeCalculationPolicy: Static <1>
|
|
metadataSize: 1Gi <1>
|
|
metadataSizeCalculationPolicy: Host <1>
|
|
----
|
|
<1> Optional field |