Skip to content

Commit

Permalink
add max volume limit param in powerscale (#806)
Browse files Browse the repository at this point in the history
  • Loading branch information
chimanjain authored Aug 31, 2023
1 parent c615040 commit 3de8733
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -366,6 +366,7 @@ function displayModules(installationType, driverName, CONSTANTS_PARAM) {
$(".fsGroupPolicy").show();
$(".vgsnapshot").hide();
$(".storage-capacity").show();
$(".max-volumes-per-node").show();
document.getElementById("driver-namespace").value = CONSTANTS_PARAM.POWERSCALE_NAMESPACE;
if (installationType === 'operator'){
$(".observability-operator").show();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -238,6 +238,8 @@ csi-vxflexos:
csi-isilon:
enabled: $POWERSCALE_ENABLED
version: "v2.7.0"
images:
driverRepository: $IMAGE_REPOSITORY
certSecretCount: $CERT_SECRET_COUNT

allowedNetworks: []
Expand All @@ -251,6 +253,8 @@ csi-isilon:
storageCapacity:
enabled: $STORAGE_CAPACITY_ENABLED

maxIsilonVolumesPerNode: $MAX_VOLUMES_PER_NODE

controller:
controllerCount: $CONTROLLER_COUNT
volumeNamePrefix: $VOLUME_NAME_PREFIX
Expand Down Expand Up @@ -340,9 +344,6 @@ csi-isilon:
- "--driverPodLabelValue=dell-storage"
- "--ignoreVolumelessPods=false"

images:
driverRepository: $IMAGE_REPOSITORY

## K8S/CSI-Unity ATTRIBUTES
##########################################
csi-unity:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -244,6 +244,8 @@ csi-vxflexos:
csi-isilon:
enabled: $POWERSCALE_ENABLED
version: "v2.8.0"
images:
driverRepository: $IMAGE_REPOSITORY
certSecretCount: $CERT_SECRET_COUNT

allowedNetworks: []
Expand All @@ -257,6 +259,8 @@ csi-isilon:
storageCapacity:
enabled: $STORAGE_CAPACITY_ENABLED

maxIsilonVolumesPerNode: $MAX_VOLUMES_PER_NODE

controller:
controllerCount: $CONTROLLER_COUNT
volumeNamePrefix: $VOLUME_NAME_PREFIX
Expand Down Expand Up @@ -346,9 +350,6 @@ csi-isilon:
- "--driverPodLabelValue=dell-storage"
- "--ignoreVolumelessPods=false"

images:
driverRepository: $IMAGE_REPOSITORY

## K8S/CSI-Unity ATTRIBUTES
##########################################
csi-unity:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ spec:
# Allowed values: n, where n >= 0
# Default value: 0
- name: X_CSI_MAX_VOLUMES_PER_NODE
value: "0"
value: "$MAX_VOLUMES_PER_NODE"

# X_CSI_ALLOWED_NETWORKS: Custom networks for PowerScale export
# Specify list of networks which can be used for NFS I/O traffic; CIDR format should be used.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ spec:
# Allowed values: n, where n >= 0
# Default value: 0
- name: X_CSI_MAX_VOLUMES_PER_NODE
value: "0"
value: "$MAX_VOLUMES_PER_NODE"

# X_CSI_ALLOWED_NETWORKS: Custom networks for PowerScale export
# Specify list of networks which can be used for NFS I/O traffic; CIDR format should be used.
Expand Down
2 changes: 1 addition & 1 deletion content/docs/deployment/csmoperator/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@ The table below lists the driver and modules versions installable with the CSM O

| CSI Driver | Version | CSM Authorization | CSM Replication | CSM Observability | CSM Resiliency |
| ------------------ |---------|-------------------|-----------------|-------------------|----------------|
| CSI PowerScale | 2.8.0 | ✔ 1.7.0 | ✔ 1.5.0 | ✔ 1.6.0 | ✔ 1.7.0 |
| CSI PowerScale | 2.7.0 | ✔ 1.7.0 | ✔ 1.5.0 | ✔ 1.5.0 | ✔ 1.6.0 |
| CSI PowerScale | 2.6.0 | ✔ 1.6.0 | ✔ 1.4.0 | ✔ 1.5.0 ||
| CSI PowerScale | 2.5.0 | ✔ 1.5.0 | ✔ 1.3.0 | ✔ 1.4.0 ||
| CSI PowerFlex | 2.7.0 | ✔ 1.7.0 | ✔ 1.5.0 | ✔ 1.5.0 | ✔ 1.6.0 |
| CSI PowerFlex | 2.6.0 | ✔ 1.6.0 | ✔ 1.4.0 | ✔ 1.5.0 ||
| CSI PowerFlex | 2.5.0 | ✔ 1.5.0 || ✔ 1.4.0 ||
Expand Down

0 comments on commit 3de8733

Please sign in to comment.