From 31c8d6e38c78155b465acd99d5281fc77febe4b0 Mon Sep 17 00:00:00 2001 From: Sharan Robinson Date: Thu, 20 Aug 2026 14:58:46 -0500 Subject: [PATCH] [patch] adding filters to tekton definitions for mas restore command. --- tekton/src/pipelines/mas-restore.yml.j2 | 4 ++++ tekton/src/tasks/download-backup-archive.yml.j2 | 12 ++++++++++++ 2 files changed, 16 insertions(+) diff --git a/tekton/src/pipelines/mas-restore.yml.j2 b/tekton/src/pipelines/mas-restore.yml.j2 index bd58917f6c..ad853141c4 100644 --- a/tekton/src/pipelines/mas-restore.yml.j2 +++ b/tekton/src/pipelines/mas-restore.yml.j2 @@ -103,6 +103,10 @@ spec: value: $(params.restore_manage_db) - name: include_manage_app_archive value: $(params.restore_manage_app) + - name: include_facilities_app_archive + value: $(params.restore_facilities_app) + - name: include_facilities_db_archive + value: $(params.restore_facilities_db) # S3 parameters - name: aws_access_key_id diff --git a/tekton/src/tasks/download-backup-archive.yml.j2 b/tekton/src/tasks/download-backup-archive.yml.j2 index 40384af2fc..3e08e0dcde 100644 --- a/tekton/src/tasks/download-backup-archive.yml.j2 +++ b/tekton/src/tasks/download-backup-archive.yml.j2 @@ -37,6 +37,14 @@ spec: type: string description: Download Manage App archive default: "false" + - name: include_facilities_app_archive + type: string + description: Download Facilities App archive + default: "false" + - name: include_facilities_db_archive + type: string + description: Download Facilities DB archive + default: "false" # S3 download parameters - name: aws_access_key_id @@ -101,6 +109,10 @@ spec: value: $(params.include_manage_db_archive) - name: INCLUDE_MANAGE_APP_ARCHIVE value: $(params.include_manage_app_archive) + - name: INCLUDE_FACILITIES_APP_ARCHIVE + value: $(params.include_facilities_app_archive) + - name: INCLUDE_FACILITIES_DB_ARCHIVE + value: $(params.include_facilities_db_archive) # S3 credentials - name: S3_ACCESS_KEY_ID