diff --git a/test/e2e/e2e.bats b/test/e2e/e2e.bats index b9fc15a..6a0ca8b 100644 --- a/test/e2e/e2e.bats +++ b/test/e2e/e2e.bats @@ -13,7 +13,7 @@ source ./test/helper/helper.sh --param="DEPTH=1" \ --param="VERBOSE=true" \ --use-param-defaults \ - --workspace="name=output,emptyDir=" \ + --workspace name=task-git-pvc,volumeClaimTemplateFile=./test/e2e/resources/workspace-template.yaml \ --skip-optional-workspace \ --showlog >&3 assert_success diff --git a/test/e2e/workspace-template.yaml b/test/e2e/workspace-template.yaml new file mode 100644 index 0000000..9073255 --- /dev/null +++ b/test/e2e/workspace-template.yaml @@ -0,0 +1,6 @@ +spec: + accessModes: + - ReadWriteOnce + resources: + requests: + storage: 250Mi