-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added array configmap params for powermax (#543)
* Added array configmap params for powermax Signed-off-by: Harish P <[email protected]> * Added array configmap creation Signed-off-by: Harish P <[email protected]> * lint fix Signed-off-by: Harish P <[email protected]> * updated array config * updated array config * added configmap to create automatically Signed-off-by: Harish P <[email protected]> * updated image pull policy * lint fix * lint fix * lint fix * lintfix * lint fix --------- Signed-off-by: Harish P <[email protected]>
- Loading branch information
1 parent
21f21f8
commit fa20feb
Showing
4 changed files
with
53 additions
and
34 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
apiVersion: v1 | ||
kind: ConfigMap | ||
metadata: | ||
name: {{ .Release.Name }}-array-config | ||
namespace: {{ .Release.Namespace }} | ||
data: | ||
powermax-array-config.yaml: | | ||
X_CSI_POWERMAX_PORTGROUPS: {{ .Values.global.portGroups | toYaml | default "" }} | ||
X_CSI_TRANSPORT_PROTOCOL: {{ .Values.global.transportProtocol | toYaml | default "" }} | ||
X_CSI_POWERMAX_ENDPOINT: {{ .Values.global.endpoint | toYaml | default "" }} | ||
X_CSI_MANAGED_ARRAYS: {{ .Values.global.managedArrays | toYaml | default "" }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters