From afb78a06bab0e5d5cd15581dc1897acb66534cb5 Mon Sep 17 00:00:00 2001 From: Shimon Tanny Date: Sun, 25 Jan 2026 17:04:19 +0200 Subject: [PATCH 1/6] check --- src/vuln_analysis/utils/prompting.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/vuln_analysis/utils/prompting.py b/src/vuln_analysis/utils/prompting.py index 45837e0c..7e48b849 100644 --- a/src/vuln_analysis/utils/prompting.py +++ b/src/vuln_analysis/utils/prompting.py @@ -37,7 +37,7 @@ def build_tool_descriptions(tool_names: list[str]) -> list[str]: from vuln_analysis.tools.tool_names import ToolNames descriptions = [] - + #need to fix here if ToolNames.CODE_SEMANTIC_SEARCH in tool_names: descriptions.append( f"{ToolNames.CODE_SEMANTIC_SEARCH}: Searches source code using semantic understanding" From 1c533aea6d9ad6519a5644cbb4b64abb8ddc6c75 Mon Sep 17 00:00:00 2001 From: Shimon Tanny Date: Mon, 26 Jan 2026 10:19:41 +0200 Subject: [PATCH 2/6] fix namespace --- .tekton/on-pull-request.yaml | 2 +- .tekton/on-push.yaml | 2 +- .tekton/on-tag.yaml | 2 +- .tekton/tasks/buildah-task.yaml | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.tekton/on-pull-request.yaml b/.tekton/on-pull-request.yaml index 9ae42742..00d714fb 100644 --- a/.tekton/on-pull-request.yaml +++ b/.tekton/on-pull-request.yaml @@ -113,7 +113,7 @@ spec: - name: name value: buildah-pvc - name: namespace - value: ruben-morpheus + value: exploit-iq-tests workspaces: - name: source workspace: source diff --git a/.tekton/on-push.yaml b/.tekton/on-push.yaml index 47fc2680..e597bfac 100644 --- a/.tekton/on-push.yaml +++ b/.tekton/on-push.yaml @@ -103,7 +103,7 @@ spec: - name: name value: buildah-pvc - name: namespace - value: ruben-morpheus + value: exploit-iq-tests workspaces: - name: source workspace: source diff --git a/.tekton/on-tag.yaml b/.tekton/on-tag.yaml index fd27734f..a820663d 100644 --- a/.tekton/on-tag.yaml +++ b/.tekton/on-tag.yaml @@ -132,7 +132,7 @@ spec: - name: name value: buildah-pvc - name: namespace - value: ruben-morpheus + value: exploit-iq-tests workspaces: - name: source workspace: source diff --git a/.tekton/tasks/buildah-task.yaml b/.tekton/tasks/buildah-task.yaml index 60f9a43a..f8bda83c 100644 --- a/.tekton/tasks/buildah-task.yaml +++ b/.tekton/tasks/buildah-task.yaml @@ -2,7 +2,7 @@ apiVersion: tekton.dev/v1 kind: Task metadata: name: buildah-pvc - namespace: ruben-morpheus + namespace: exploit-iq-tests spec: description: | From 06ac1a2df9af3cccf74b04ab8932ce5460ca0282 Mon Sep 17 00:00:00 2001 From: Shimon Tanny Date: Mon, 26 Jan 2026 13:38:04 +0200 Subject: [PATCH 3/6] testing 123 --- .tekton/on-cm-runner.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.tekton/on-cm-runner.yaml b/.tekton/on-cm-runner.yaml index 08e308c7..23b03725 100644 --- a/.tekton/on-cm-runner.yaml +++ b/.tekton/on-cm-runner.yaml @@ -26,7 +26,7 @@ spec: value: "{{ trigger_comment }}" # Point to the image ALREADY built by the PR pipeline - name: target-image - value: quay.io/ecosystem-appeng/agent-morpheus-rh:on-pr-{{revision}} + value: quay.io/ecosystem-appeng/agent-morpheus-rh:latest pipelineSpec: params: From bd21eff042c0838260109800034b6463f79db000 Mon Sep 17 00:00:00 2001 From: Shimon Tanny Date: Mon, 26 Jan 2026 15:54:19 +0200 Subject: [PATCH 4/6] quay sec --- .tekton/on-cm-runner.yaml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.tekton/on-cm-runner.yaml b/.tekton/on-cm-runner.yaml index 23b03725..2acc8635 100644 --- a/.tekton/on-cm-runner.yaml +++ b/.tekton/on-cm-runner.yaml @@ -76,6 +76,8 @@ spec: workspace: basic-auth # Needed for pushing tags/releases - name: exploit-iq-data workspace: exploit-iq-data + - name: dockerconfig + workspace: dockerconfig-ws params: - name: CURRENT_REVISION value: $(params.revision) @@ -441,3 +443,6 @@ spec: - name: exploit-iq-data persistentVolumeClaim: claimName: exploit-iq-cach-pvc + - name: dockerconfig-ws + secret: + secretName: ecosystem-appeng-morpheus-quay From 17c20fb7b5f5a731fd2fe1c395ffcc7b5db70a5a Mon Sep 17 00:00:00 2001 From: Shimon Tanny Date: Mon, 26 Jan 2026 16:41:59 +0200 Subject: [PATCH 5/6] sec --- .tekton/on-cm-runner.yaml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.tekton/on-cm-runner.yaml b/.tekton/on-cm-runner.yaml index 2acc8635..43ce2917 100644 --- a/.tekton/on-cm-runner.yaml +++ b/.tekton/on-cm-runner.yaml @@ -13,6 +13,10 @@ metadata: spec: timeouts: pipeline: 10h30m0s # Timeout for the entire PipelineRun + + podTemplate: + imagePullSecrets: + - name: ecosystem-appeng-morpheus-quay params: - name: repo_url value: "{{ repo_url }}" @@ -26,7 +30,7 @@ spec: value: "{{ trigger_comment }}" # Point to the image ALREADY built by the PR pipeline - name: target-image - value: quay.io/ecosystem-appeng/agent-morpheus-rh:latest + value: quay.io/ecosystem-appeng/agent-morpheus-rh:nat pipelineSpec: params: From cfb640e0e4b3376b88e3115785a76a12315ee0d4 Mon Sep 17 00:00:00 2001 From: Shimon Tanny Date: Mon, 26 Jan 2026 16:51:14 +0200 Subject: [PATCH 6/6] take main image --- .tekton/on-cm-runner.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.tekton/on-cm-runner.yaml b/.tekton/on-cm-runner.yaml index 43ce2917..f8631787 100644 --- a/.tekton/on-cm-runner.yaml +++ b/.tekton/on-cm-runner.yaml @@ -13,7 +13,7 @@ metadata: spec: timeouts: pipeline: 10h30m0s # Timeout for the entire PipelineRun - + podTemplate: imagePullSecrets: - name: ecosystem-appeng-morpheus-quay @@ -30,7 +30,7 @@ spec: value: "{{ trigger_comment }}" # Point to the image ALREADY built by the PR pipeline - name: target-image - value: quay.io/ecosystem-appeng/agent-morpheus-rh:nat + value: quay.io/ecosystem-appeng/agent-morpheus-rh:latest pipelineSpec: params: