-
Notifications
You must be signed in to change notification settings - Fork 8
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
Ensure that the fields mentioned in samples are configurable. #162
Changes from 4 commits
61bc9a2
fd09617
863c8da
616b4dd
dfcb8d4
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -94,26 +94,35 @@ spec: | |
apiVersion: v1 | ||
fieldPath: spec.nodeName | ||
- name: X_CSI_POWERSTORE_NODE_NAME_PREFIX | ||
value: csi-node | ||
value: <X_CSI_POWERSTORE_NODE_NAME_PREFIX> | ||
- name: X_CSI_POWERSTORE_NODE_ID_PATH | ||
value: /node-id | ||
- name: X_CSI_POWERSTORE_NODE_CHROOT_PATH | ||
value: /noderoot | ||
- name: X_CSI_POWERSTORE_TMP_DIR | ||
value: var/lib/kubelet/plugins/csi-powerstore.dellemc.com/tmp | ||
value: /var/lib/kubelet/plugins/csi-powerstore.dellemc.com/tmp | ||
- name: X_CSI_DRIVER_NAME | ||
value: "csi-powerstore" | ||
value: "csi-powerstore.dellemc.com" | ||
- name: X_CSI_FC_PORTS_FILTER_FILE_PATH | ||
value: /etc/fc-ports-filter | ||
value: <X_CSI_FC_PORTS_FILTER_FILE_PATH> | ||
- name: X_CSI_POWERSTORE_ENABLE_CHAP | ||
value: "false" | ||
value: "<X_CSI_POWERSTORE_ENABLE_CHAP>" | ||
- name: X_CSI_POWERSTORE_CONFIG_PATH | ||
value: /powerstore-config/config | ||
- name: X_CSI_POWERSTORE_CONFIG_PARAMS_PATH | ||
value: /powerstore-config-params/driver-config-params.yaml | ||
- name: GOPOWERSTORE_DEBUG | ||
value: "true" | ||
- name: X_CSI_HEALTH_MONITOR_ENABLED | ||
value: "<X_CSI_HEALTH_MONITOR_ENABLED>" | ||
volumeMounts: | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @kk3, please check if volumeMounts section is duplicated in this file There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. taken care |
||
- name: driver-path | ||
mountPath: /var/lib/kubelet/plugins/csi-powerstore.dellemc.com | ||
- name: csi-path | ||
mountPath: /var/lib/kubelet/plugins/kubernetes.io/csi | ||
mountPropagation: "Bidirectional" | ||
- name: pods-path | ||
mountPath: /var/lib/kubelet/pods | ||
value: "false" | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Do we have value for volumeMounts. @kk3 please check There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. taken care |
||
volumeMounts: | ||
- name: driver-path | ||
|
@@ -148,7 +157,7 @@ spec: | |
args: | ||
- "--v=5" | ||
- "--csi-address=$(ADDRESS)" | ||
- --kubelet-registration-path=var/lib/kubelet/plugins/csi-powerstore.dellemc.com/csi_sock | ||
- --kubelet-registration-path=/var/lib/kubelet/plugins/csi-powerstore.dellemc.com/csi_sock | ||
env: | ||
- name: ADDRESS | ||
value: /csi/csi_sock | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@karthikk92 , Do we need quotes here
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
taken care