Skip to content

Commit

Permalink
Adds supprt for vSphere/Auto RDM in v1.21 (#113)
Browse files Browse the repository at this point in the history
  • Loading branch information
delldubey authored Nov 23, 2022
1 parent 3938cba commit de3505a
Show file tree
Hide file tree
Showing 2 changed files with 41 additions and 1 deletion.
36 changes: 36 additions & 0 deletions samples/powermax_v250_k8s_121.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,42 @@ spec:
# default values: None
- name: "X_CSI_GRPC_MAX_THREADS"
value: "4"
# VMware/vSphere virtualization support
# set X_CSI_VSPHERE_ENABLED to true, if you to enable VMware virtualized environment support via RDM
# Allowed values:
# "true" - vSphere volumes are enabled
# "false" - vSphere volumes are disabled
# Default value: "false"
- name: "X_CSI_VSPHERE_ENABLED"
value: "false"
# X_CSI_VSPHERE_PORTGROUP: An existing portGroup that driver will use for vSphere
# recommended format: csi-x-VC-PG, x can be anything of user choice
# Allowed value: valid existing port group on the array
# Default value: "" <empty>
- name: "X_CSI_VSPHERE_PORTGROUP"
value: ""
# X_CSI_VSPHERE_HOSTGROUP: An existing host group that driver will use for vSphere
# this hostGroup should contain initiators from all the ESXs/ESXi host where the cluster is deployed
# recommended format: csi-x-VC-HG, x can be anything of user choice
# Allowed value: valid existing port group on the array
# Default value: "" <empty>
- name: "X_CSI_VSPHERE_HOSTGROUP"
value: ""
# X_CSI_VCenter_HOST: URL/endpoint of the vCenter where all the ESX are present
# Allowed value: valid vCenter host endpoint
# Default value: "" <empty>
- name: "X_CSI_VCenter_HOST"
value: ""
# X_CSI_VCenter_USERNAME: username from the vCenter credentials
# Allowed value: valid vCenter host username
# Default value: "" <empty>
- name: "X_CSI_VCenter_USERNAME"
value: ""
# X_CSI_VCenter_PWD: password from the vCenter credentials
# Allowed value: valid vCenter host password
# Default value: "" <empty>
- name: "X_CSI_VCenter_PWD"
value: ""

sideCars:
# Uncomment the following to install 'external-health-monitor' sidecar to enable health monitor of CSI volumes from Controller plugin.
Expand Down
6 changes: 5 additions & 1 deletion samples/powermax_v250_k8s_124.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,11 @@ spec:
# Default value: "" <empty>
- name: "X_CSI_VCenter_USERNAME"
value: ""

# X_CSI_VCenter_PWD: password from the vCenter credentials
# Allowed value: valid vCenter host password
# Default value: "" <empty>
- name: "X_CSI_VCenter_PWD"
value: ""
sideCars:
# Uncomment the following to install 'external-health-monitor' sidecar to enable health monitor of CSI volumes from Controller plugin.
# Also set the env variable controller.envs.X_CSI_HEALTH_MONITOR_ENABLED to "true" for controller plugin.
Expand Down

0 comments on commit de3505a

Please sign in to comment.