Skip to content

Commit

Permalink
Modifiable values consistent across drivers (#583)
Browse files Browse the repository at this point in the history
* made values.yaml consistent across drivers

* fixed review comments

* fixed new review comments
  • Loading branch information
rishabhatdell authored Dec 19, 2024
1 parent 8d5e936 commit 178bd05
Show file tree
Hide file tree
Showing 5 changed files with 32 additions and 26 deletions.
14 changes: 8 additions & 6 deletions charts/csi-isilon/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@ images:

# CSI driver log level
# Allowed values: "error", "warn"/"warning", "info", "debug"
# Default value: "debug"
logLevel: "debug"
# Default value: "info"
logLevel: "info"

# certSecretCount: Represents number of certificate secrets, which user is going to create for
# ssl authentication. (isilon-cert-0..isilon-cert-n)
Expand Down Expand Up @@ -118,8 +118,9 @@ controller:

# volumeNamePrefix: Prefix of PersistentVolume names created
# Allowed values: string
# Default value: None
volumeNamePrefix: k8s
# Default value: csivol
# Examples: "k8s", "app1"
volumeNamePrefix: csivol

# leaderElection: configure leader election parameters
leaderElection:
Expand Down Expand Up @@ -168,8 +169,9 @@ controller:

# snapNamePrefix: Prefix to apply to the names of a created snapshots
# Allowed values: string
# Default value: None
snapNamePrefix: snapshot
# Default value: csi-snap
# Examples: "snap", "snapshot"
snapNamePrefix: csi-snap

resizer:
# enabled: Enable/Disable volume expansion feature
Expand Down
16 changes: 8 additions & 8 deletions charts/csi-powermax/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
global:
# CSI driver log level
# Allowed values: "error", "warn"/"warning", "info", "debug"
# Default value: "debug"
logLevel: "debug"
# Default value: "info"
logLevel: "info"

# CSI driver log format
# Allowed values: "TEXT" or "JSON"
Expand Down Expand Up @@ -52,7 +52,7 @@ global:
managementServers:
- endpoint: https://primary-1.unisphe.re:8443
credentialsSecret: primary-1-secret
skipCertificateValidation: false
skipCertificateValidation: true
certSecret: primary-cert
limits:
maxActiveRead: 5
Expand All @@ -61,7 +61,7 @@ global:
maxOutStandingWrite: 50
- endpoint: https://backup-1.unisphe.re:8443
credentialsSecret: backup-1-secret
skipCertificateValidation: false
skipCertificateValidation: true
# - endpoint: https://primary-2.unisphe.re:8443
# credentialsSecret: primary-2-secret
# skipCertificateValidation: true
Expand Down Expand Up @@ -171,9 +171,9 @@ controller:

# volumeNamePrefix: Define a prefix that is prepended to volumes.
# THIS MUST BE ALL LOWER CASE.
# Default value: None
# Default value: csivol
# Examples: "volumes", "vol"
volumeNamePrefix: pmax
volumeNamePrefix: csivol

snapshot:
# enabled: Enable/Disable volume snapshot feature
Expand All @@ -184,9 +184,9 @@ controller:
enabled: true
# snapNamePrefix: Define a prefix that is prepended to snapshots.
# THIS MUST BE ALL LOWER CASE.
# Default value: None
# Default value: csi-snap
# Examples: "snap", "snapshot"
snapNamePrefix: pmsn
snapNamePrefix: csi-snap

resizer:
# enabled: Enable/Disable volume expansion feature
Expand Down
12 changes: 7 additions & 5 deletions charts/csi-powerstore/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,8 @@ controller:

# volumeNamePrefix: defines a string prepended to each volume created by the CSI driver.
# Allowed values: string
# Default value: None
# Default value: csivol
# Examples: "k8s", "app1"
volumeNamePrefix: csivol

# vgsnapshot: allows to configure volume-group-snapshot
Expand All @@ -146,8 +147,9 @@ controller:

# snapNamePrefix: Prefix to apply to the names of a created snapshots
# Allowed values: string
# Default value: None
snapNamePrefix: csisnap
# Default value: csi-snap
# Examples: "snap", "snapshot"
snapNamePrefix: csi-snap
# resizer: allows to enable/disable resizer feature
resizer:
# enabled: Enable/Disable volume expansion feature
Expand Down Expand Up @@ -305,8 +307,8 @@ connection:

# CSI driver log level
# Allowed values: "error", "warn"/"warning", "info", "debug", "error"
# Default value: "debug"
logLevel: "debug"
# Default value: "info"
logLevel: "info"

# CSI driver log format
# Allowed values: "TEXT" or "JSON"
Expand Down
8 changes: 5 additions & 3 deletions charts/csi-unity/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ allowedNetworks:
# IfNotPresent: Only pull the image if it does not already exist on the node.
# Never: Never pull the image.
# Default value: IfNotPresent
imagePullPolicy: Always
imagePullPolicy: IfNotPresent

# Specify kubelet config dir path.
# Ensure that the config.yaml file is present at this path.
Expand Down Expand Up @@ -80,7 +80,8 @@ controller:

# volumeNamePrefix: Prefix of PersistentVolume names created
# Allowed values: string
# Default value: None
# Default value: csivol
# Examples: "k8s", "app1"
volumeNamePrefix: csivol

snapshot:
Expand All @@ -93,7 +94,8 @@ controller:

# snapNamePrefix: Prefix to apply to the names of a created snapshots
# Allowed values: string
# Default value: None
# Default value: csi-snap
# Examples: "snap", "snapshot"
snapNamePrefix: csi-snap

resizer:
Expand Down
8 changes: 4 additions & 4 deletions charts/csi-vxflexos/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,8 @@ certSecretCount: 0

# CSI driver log level
# Allowed values: "error", "warn"/"warning", "info", "debug"
# Default value: "debug"
logLevel: "debug"
# Default value: "info"
logLevel: "info"

# CSI driver log format
# Allowed values: "TEXT" or "JSON"
Expand Down Expand Up @@ -161,9 +161,9 @@ controller:
interval: 60s

# volumeNamePrefix- defines a string prepended to each volume created by the CSI driver.
# Default value: none
# Default value: csivol
# Examples: "k8s", "app1"
volumeNamePrefix: k8s
volumeNamePrefix: csivol

# "controllerCount" defines the number of VxFlex controller pods to deploy
# Allowed values: n, where n > 0
Expand Down

0 comments on commit 178bd05

Please sign in to comment.