Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions tekton/src/pipelines/mas-restore.yml.j2
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
12 changes: 12 additions & 0 deletions tekton/src/tasks/download-backup-archive.yml.j2
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
Loading