Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updating changes identified during release activity #423

Merged
merged 1 commit into from
Dec 11, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ For any CSM Operator and driver issues, questions or feedback, join the [Dell Te
## Supported Platforms
Dell Container Storage Modules Operator has been tested and qualified with

* Upstream Kubernetes cluster v1.25, v1.26, v1.27
* Upstream Kubernetes cluster v1.26, v1.27, v1.28
* OpenShift Clusters 4.13, 4.14 with RHEL 8.x & RHCOS worker nodes

## Installation
Expand Down
6 changes: 3 additions & 3 deletions config/samples/storage_v1_csm_powerflex.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -117,15 +117,15 @@ spec:
# Default value: false
- name: X_CSI_APPROVE_SDC_ENABLED
value: "false"

# X_CSI_HEALTH_MONITOR_ENABLED: Enable/Disable health monitor of CSI volumes from node plugin - volume usage
# Allowed values:
# true: enable checking of health condition of CSI volumes
# false: disable checking of health condition of CSI volumes
# Default value: false
- name: X_CSI_HEALTH_MONITOR_ENABLED
value: "false"

value: "false"
# X_CSI_RENAME_SDC_ENABLED: Enable/Disable rename of SDC
# Allowed values:
# true: enable renaming
Expand Down
8 changes: 8 additions & 0 deletions config/samples/storage_v1_csm_powerscale.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,14 @@ spec:
- name: X_CSI_ISI_SKIP_CERTIFICATE_VALIDATION
value: "true"

# X_CSI_ISI_AUTH_TYPE: Specify the authentication method to be used.
# Allowed values:
# 0: basic authentication
# 1: session-based authentication
# Default value: 0
- name: X_CSI_ISI_AUTH_TYPE
value: "0"

# X_CSI_CUSTOM_TOPOLOGY_ENABLED: Specify if custom topology label <provisionerName>.dellemc.com/<powerscalefqdnorip>:<provisionerName>
# has to be used for making connection to backend PowerScale Array.
# If X_CSI_CUSTOM_TOPOLOGY_ENABLED is set to true, then do not specify allowedTopologies in storage class.
Expand Down
12 changes: 8 additions & 4 deletions config/samples/storage_v1_csm_unity.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -80,15 +80,19 @@ spec:
value: "true"

sideCars:
# health monitor is disabled by default, refer to driver documentation before enabling it
- name: external-health-monitor
enabled: false
args: ["--monitor-interval=60s"]
# 'csivol' represents a string prepended to each volume created by the CSI driver
- name: provisioner
args: ["--volume-name-prefix=csivol"]
# Uncomment the following to configure how often external-provisioner polls the driver to detect changed capacity
# Configure when the storageCapacity is set as "true"
# Allowed values: 1m,2m,3m,...,10m,...,60m etc. Default value: 5m
#- name: provisioner
# args: ["--capacity-poll-interval=5m"]

# health monitor is disabled by default, refer to driver documentation before enabling it
- name: external-health-monitor
enabled: false
args: ["--monitor-interval=60s"]
controller:
envs:
# X_CSI_HEALTH_MONITOR_ENABLED: Enable/Disable health monitor of CSI volumes from Controller plugin - volume condition.
Expand Down
10 changes: 10 additions & 0 deletions samples/storage_csm_unity_v290.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,11 @@ spec:
# Allowed values: ReadWriteOnceWithFSType, File , None
# Default value: ReadWriteOnceWithFSType
fSGroupPolicy: "ReadWriteOnceWithFSType"
# storageCapacity: Helps the scheduler to schedule the pod on a node satisfying the topology constraints, only if the requested capacity is available on the storage array
# Allowed values:
# true: enable storage capacity tracking
# false: disable storage capacity tracking
storageCapacity: true
# Config version for CSI Unity v2.9.0 driver
configVersion: v2.9.0
# Controller count
Expand Down Expand Up @@ -78,6 +83,11 @@ spec:
# 'csivol' represents a string prepended to each volume created by the CSI driver
- name: provisioner
args: ["--volume-name-prefix=csivol"]
# Uncomment the following to configure how often external-provisioner polls the driver to detect changed capacity
# Configure when the storageCapacity is set as "true"
# Allowed values: 1m,2m,3m,...,10m,...,60m etc. Default value: 5m
#- name: provisioner
# args: ["--capacity-poll-interval=5m"]

# health monitor is disabled by default, refer to driver documentation before enabling it
- name: external-health-monitor
Expand Down
Loading