-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into add-interface-filters
- Loading branch information
Showing
8 changed files
with
156 additions
and
55 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,90 @@ | ||
--- | ||
# This is a sample manifest for utilizing the topology feature | ||
# PVCs created using this storage class will be scheduled | ||
# only on the nodes with ISCSI access to the PowerMax | ||
|
||
# Change all instances to <SYMID> to the Symmetrix ID of the PowerMax array | ||
# In case you installed the driver with a custom name, then replace | ||
# all instances of "csi-powermax.dellemc.com" with the custom provisioner name | ||
|
||
apiVersion: storage.k8s.io/v1 | ||
kind: StorageClass | ||
metadata: | ||
name: powermax-nvmetcp | ||
parameters: | ||
# "csi.storage.k8s.io/fstype" is used to set the filesystem type which will be used to format the new volume | ||
# Allowed values: | ||
# "ext4" - EXT4 File system | ||
# "xfs" - XFS File system | ||
# Optional: true | ||
# Default value: None if defaultFsType is not mentioned in values.yaml | ||
# Else defaultFsType value mentioned in values.yaml | ||
# will be used as default value | ||
csi.storage.k8s.io/fstype: xfs | ||
# Name of SRP on PowerMax array that should be used for provisioning | ||
# Optional: false | ||
# Examples: "DEFAULT_SRP" , "SRP_1" | ||
SRP: <SRP Name> | ||
# Serial ID of the array that is used for provisioning | ||
# Optional: false | ||
# Example: "000000000001" | ||
SYMID: <SYMID> | ||
# Name of Service Level on PowerMax array that should be used for provisioning | ||
# Optional: true, Default value: Optimized | ||
# Examples: "Diamond" , "Bronze" | ||
ServiceLevel: <Service Level> | ||
# Following params are for HostLimits, set them only if you want to set IOLimits | ||
# HostLimitName uniquely identifies given set of limits on a storage class | ||
# This is used in naming storage group, max of 3 letter | ||
# Optional: true | ||
# Example: "HL1", "HL2" | ||
#HostLimitName: "HL1" | ||
# The MBs per Second Host IO limit for the storage class | ||
# Optional: true, Default: "" | ||
# Examples: 100, 200, NOLIMIT | ||
#HostIOLimitMBSec: "" | ||
# The IOs per Second Host IO limit for the storage class | ||
# Optional: true, Default: "" | ||
# Examples: 100, 200, NOLIMIT | ||
#HostIOLimitIOSec: "" | ||
# distribution of the Host IO limits for the storage class | ||
# Optional: true, Default: "" | ||
# Allowed values: Never","Always" or "OnFailure" only | ||
#DynamicDistribution: "" | ||
# If using custom driver name, change the following to point to the custom name | ||
# Optional: true, Default value: csi-powermax.dellemc.com | ||
# Examples: "csi-driver-powermax", "csi-powermax.dellemc.com" | ||
provisioner: csi-powermax.dellemc.com | ||
# Configure what happens to a Persistent Volume when the PVC | ||
# it is bound to is to be deleted | ||
# Allowed values: | ||
# Delete: the underlying persistent volume will be deleted along with the PVC. | ||
# Retain: the underlying persistent volume remain. | ||
# Optional: true, Default value: None | ||
reclaimPolicy: Delete | ||
# volumeBindingMode- controls when volume binding | ||
# and dynamic provisioning should occur. | ||
# Allowed values: | ||
# Immediate- indicates that volume binding and dynamic provisioning | ||
# occurs once the PersistentVolumeClaim is created | ||
# WaitForFirstConsumer- will delay the binding and provisioning of a PV | ||
# until a Pod using the PersistentVolumeClaim is created | ||
# Optional: true, Default value: None | ||
volumeBindingMode: WaitForFirstConsumer | ||
# Attribute to allow volume expansion | ||
# Allowed values: | ||
# "true" - Volume can be resized | ||
# "false" - Volume cannot be resized | ||
# Optional: true, Default value: "true" | ||
allowVolumeExpansion: true | ||
# Restrict provisioning to specific topologies | ||
# Allowed values: map of key-value pairs | ||
# Optional: true, Default value: None | ||
allowedTopologies: | ||
- matchLabelExpressions: | ||
- key: csi-powermax.dellemc.com/<SYMID> | ||
values: | ||
- csi-powermax.dellemc.com | ||
- key: csi-powermax.dellemc.com/<SYMID>.nvmetcp | ||
values: | ||
- csi-powermax.dellemc.com |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters