From 893b345cf627a9344bf8399486eff212a84862ac Mon Sep 17 00:00:00 2001 From: terc1997 <64480693+terc1997@users.noreply.github.com> Date: Thu, 27 Nov 2025 13:52:12 -0300 Subject: [PATCH 1/2] [patch] add image stich to manage parameters --- tekton/src/pipelines/taskdefs/apps/manage-workspace.yml.j2 | 2 ++ tekton/src/tasks/suite-app-config.yml.j2 | 6 ++++++ 2 files changed, 8 insertions(+) diff --git a/tekton/src/pipelines/taskdefs/apps/manage-workspace.yml.j2 b/tekton/src/pipelines/taskdefs/apps/manage-workspace.yml.j2 index 083f06af723..dd3e2076ff5 100644 --- a/tekton/src/pipelines/taskdefs/apps/manage-workspace.yml.j2 +++ b/tekton/src/pipelines/taskdefs/apps/manage-workspace.yml.j2 @@ -76,6 +76,8 @@ value: $(params.mas_manage_attachment_configuration_mode) - name: mas_manage_attachments_provider value: $(params.mas_manage_attachments_provider) + - name: mas_manage_imagestitching_storage_class + value: $(params.storage_class_rwx) - name: db2_namespace value: $(params.db2_namespace) - name: ibmcloud_resourcegroup diff --git a/tekton/src/tasks/suite-app-config.yml.j2 b/tekton/src/tasks/suite-app-config.yml.j2 index bb30297a59f..28fd1fde7a8 100644 --- a/tekton/src/tasks/suite-app-config.yml.j2 +++ b/tekton/src/tasks/suite-app-config.yml.j2 @@ -153,6 +153,10 @@ spec: type: string description: Manage attachment provider (filestorage, ibm, aws) default: "" + - name: mas_manage_imagestitching_storage_class + type: string + description: Manage stitching storage class + default: "" - name: db2_namespace type: string description: Namespace to create Db2uCluster instances @@ -347,6 +351,8 @@ spec: value: $(params.mas_manage_attachment_configuration_mode) - name: MAS_MANAGE_ATTACHMENTS_PROVIDER value: $(params.mas_manage_attachments_provider) + - name: IMAGESTITCHING_STORAGE_CLASS + value: $(params.mas_manage_imagestitching_storage_class) - name: DB2_NAMESPACE value: $(params.db2_namespace) - name: IBMCLOUD_RESOURCEGROUP From fcb68ef5e3b63a63d191711276a3c63e4ddef735 Mon Sep 17 00:00:00 2001 From: terc1997 <64480693+terc1997@users.noreply.github.com> Date: Tue, 9 Dec 2025 14:21:49 -0300 Subject: [PATCH 2/2] [patch] fix merging conflicts and add imagestitching parameters back --- tekton/src/pipelines/taskdefs/apps/manage-app.yml.j2 | 2 ++ tekton/src/tasks/suite-app-install.yml.j2 | 6 ++++++ 2 files changed, 8 insertions(+) diff --git a/tekton/src/pipelines/taskdefs/apps/manage-app.yml.j2 b/tekton/src/pipelines/taskdefs/apps/manage-app.yml.j2 index 37201b4ba52..78bff895f46 100644 --- a/tekton/src/pipelines/taskdefs/apps/manage-app.yml.j2 +++ b/tekton/src/pipelines/taskdefs/apps/manage-app.yml.j2 @@ -86,6 +86,8 @@ value: $(params.mas_manage_attachment_configuration_mode) - name: mas_manage_attachments_provider value: $(params.mas_manage_attachments_provider) + - name: mas_manage_imagestitching_storage_class + value: $(params.storage_class_rwx) - name: db2_namespace value: $(params.db2_namespace) - name: ibmcloud_resourcegroup diff --git a/tekton/src/tasks/suite-app-install.yml.j2 b/tekton/src/tasks/suite-app-install.yml.j2 index 94250137f32..893a9739f3e 100644 --- a/tekton/src/tasks/suite-app-install.yml.j2 +++ b/tekton/src/tasks/suite-app-install.yml.j2 @@ -216,6 +216,10 @@ spec: type: string description: Manage attachment provider (filestorage, ibm, aws) default: "" + - name: mas_manage_imagestitching_storage_class + type: string + description: Manage stitching storage class + default: "" - name: db2_namespace type: string description: Namespace to create Db2uCluster instances @@ -463,6 +467,8 @@ spec: value: $(params.mas_manage_attachment_configuration_mode) - name: MAS_MANAGE_ATTACHMENTS_PROVIDER value: $(params.mas_manage_attachments_provider) + - name: IMAGESTITCHING_STORAGE_CLASS + value: $(params.mas_manage_imagestitching_storage_class) - name: DB2_NAMESPACE value: $(params.db2_namespace) - name: IBMCLOUD_RESOURCEGROUP