Skip to content

Commit 7556e6d

Browse files
committed
chore: enlarge temp storage pvc size for buildah task
Signed-off-by: Zvi Grinberg <[email protected]>
1 parent 98a6102 commit 7556e6d

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.tekton/on-pull-request.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -231,7 +231,7 @@ spec:
231231
- ReadWriteOnce
232232
resources:
233233
requests:
234-
storage: 5Gi
234+
storage: 10Gi
235235

236236
- name: unit-test-cache
237237
persistentVolumeClaim:

.tekton/on-push.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ spec:
142142
- ReadWriteOnce
143143
resources:
144144
requests:
145-
storage: 5Gi
145+
storage: 10Gi
146146
# This workspace will inject secret to help the git-clone task to be able to
147147
# checkout the private repositories
148148
- name: basic-auth

src/vuln_analysis/utils/transitive_code_searcher_tool.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ def download_dependencies(git_repo_path: Path, manifest_path: str = None, the_ec
118118

119119
try:
120120
logger.info(f"Started installing packages for {ecosystem}")
121-
tree_builder = get_dependency_tree_builder(ecosystem.value)
121+
tree_builder = get_dependency_tree_builder(ecosystem)
122122
tree_builder.install_dependencies(git_repo_path)
123123
if not the_ecosystem:
124124
with open(os.path.join(git_repo_path, 'ecosystem_data.txt'), 'w') as file:

0 commit comments

Comments
 (0)