File tree Expand file tree Collapse file tree 2 files changed +12
-5
lines changed Expand file tree Collapse file tree 2 files changed +12
-5
lines changed Original file line number Diff line number Diff line change @@ -20,10 +20,6 @@ if [ -z "$AUTO_ROTATE_SECRET_NAME" ]; then
20
20
export AUTO_ROTATE_SECRET_NAME=secret-$( openssl rand -hex 6)
21
21
fi
22
22
23
- if [ -z " $IS_YAML_TEST " ]; then
24
- export IS_YAML_TEST=false
25
- fi
26
-
27
23
export KEYVAULT_NAME=${KEYVAULT_NAME:- csi-secrets-store-e2e}
28
24
export SECRET_NAME=${KEYVAULT_SECRET_NAME:- secret1}
29
25
export SECRET_VERSION=${KEYVAULT_SECRET_VERSION:- " " }
Original file line number Diff line number Diff line change 15
15
# limitations under the License.
16
16
17
17
echo " running e2e provider test"
18
- make e2e-bootstrap e2e-mock-provider-container e2e-helm-deploy e2e-provider-deploy e2e-provider
18
+ make e2e-bootstrap e2e-mock-provider-container
19
+
20
+ # if YAML_TEST env var is true, then use e2e-deploy-manifest instead of e2e-helm-deploy
21
+ if [ " $IS_YAML_TEST " = " true" ]; then
22
+ echo " Deploying driver using manifest"
23
+ make e2e-deploy-manifest
24
+ else
25
+ echo " Deploying driver using helm chart"
26
+ make e2e-helm-deploy
27
+ fi
28
+
29
+ make e2e-provider-deploy e2e-provider
You can’t perform that action at this time.
0 commit comments