1
0
mirror of https://github.com/tektoncd/catalog.git synced 2024-11-21 05:55:35 +00:00

Fix tests for buildpacks-phases

Since with recent version of pipelines, affinity-assistant is enabled by
default and 2pvc cannot be bound to a pipeline at the same time hence
the task was failing

Remove the binding of optional workspace
This commit is contained in:
vinamra28 2023-09-16 17:01:46 +05:30 committed by tekton-robot
parent 1c7fd558fd
commit 08d71b4c28

View File

@ -6,7 +6,6 @@ metadata:
spec:
workspaces:
- name: source-ws
- name: cache-ws
tasks:
- name: fetch-repository
taskRef:
@ -29,8 +28,6 @@ spec:
workspaces:
- name: source
workspace: source-ws
- name: cache
workspace: cache-ws
params:
- name: APP_IMAGE
value: localhost:5000/buildpacks-app
@ -51,8 +48,3 @@ spec:
subPath: source
persistentVolumeClaim:
claimName: buildpacks-pvc
- name: cache-ws
subPath: cache
persistentVolumeClaim:
claimName: buildpacks-pvc
---