We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 025414b + 4cdcee6 commit 185f1fcCopy full SHA for 185f1fc
hack/verify-examples.sh
@@ -28,7 +28,14 @@ rollout_and_wait() {
28
}
29
30
echo "begin to create deployment examples ..."
31
-kubectl apply -f deploy/example/storageclass-blobfuse.yaml
+if [ -v EXTERNAL_E2E_TEST_BLOBFUSE_v2 ]; then
32
+ echo "create blobfuse2 storage class ..."
33
+ kubectl apply -f deploy/example/storageclass-blobfuse2.yaml
34
+else
35
+ echo "create blobfuse storage class ..."
36
+ kubectl apply -f deploy/example/storageclass-blobfuse.yaml
37
+fi
38
+
39
kubectl apply -f deploy/example/storageclass-blob-nfs.yaml
40
41
EXAMPLES=(\
0 commit comments