forked from dell/csi-powerstore
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathenv.sh
23 lines (18 loc) · 848 Bytes
/
env.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/bin/sh
# HTTP endpoint of PowerStore
export X_CSI_POWERSTORE_ENDPOINT=""
# EnvUser is the name of the enviroment variable used to set the
# username when authenticating to PowerStore
export X_CSI_POWERSTORE_USER="smc"
# EnvPassword is the name of the enviroment variable used to set the
# user's password when authenticating to PowerStore
export X_CSI_POWERSTORE_PASSWORD="smc"
# EnvInsecure is the name of the enviroment variable used to specify
# that PowerStore's certificate chain and host name should not
# be verified
export X_CSI_POWERSTORE_INSECURE="true"
# EnvAutoProbe is the name of the environment variable used to specify
# that the controller service should automatically probe itself if it
# receives incoming requests before having been probed, in direct
# violation of the CSI spec
export X_CSI_POWERSTORE_AUTOPROBE="true"