Skip to content

Commit ddba351

Browse files
authored
Merge pull request #2974 from ASFHyP3/publish-multiburst
Add publish bucket parameter to volcsarvatory job spec
2 parents 45a2fcd + 9535338 commit ddba351

File tree

3 files changed

+21
-8
lines changed

3 files changed

+21
-8
lines changed

.github/workflows/deploy-custom-prod.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ jobs:
7171
domain: hyp3-volcsarvatory.asf.alaska.edu
7272
template_bucket: cf-templates-1uzy61g1h6omf-us-west-2
7373
image_tag: latest
74-
product_lifetime_in_days: 365000
74+
product_lifetime_in_days: 30
7575
default_credits_per_user: 0
7676
default_application_status: APPROVED
7777
cost_profile: DEFAULT

CHANGELOG.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,15 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7-
## [10.11.18]
8-
9-
### Changed
10-
- Reduced default credits per user to 8,000 from 10,000 for the `hyp3-edc-prod` and `hyp3-edc-uat` deployments.
11-
127
## [10.11.17]
138

9+
### Added
10+
- Added `--publish-bucket` parameter on `VOLCSARVATORY_MULTI_BURST` job spec.
11+
1412
### Changed
15-
- Increased product lifecycle from 14 to 30 days for hyp3-tibet-jpl-test to match hyp3-tibet-jpl.
13+
- Increased product lifecycle from 14 to 30 days for `hyp3-tibet-jpl-test` to match `hyp3-tibet-jpl`.
14+
- Reduced default credits per user to 8,000 from 10,000 for the `hyp3-edc-prod` and `hyp3-edc-uat` deployments.
15+
- Reduced product lifecycle from 365000 to 30 days for `hyp3-volcsarvatory`.
1616

1717
## [10.11.16]
1818

job_spec/VOLCSARVATORY_MULTI_BURST.yml

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,16 @@ INSAR_ISCE_MULTI_BURST:
3333
minLength: 43
3434
maxLength: 43
3535
example: S1_136231_IW2_20200616T022313_VV_5D11-BURST
36+
publish_bucket:
37+
api_schema:
38+
description: Publish the resulting product to the VolcSARvatory S3 Bucket
39+
type: string
40+
nullable: true
41+
enum:
42+
- null
43+
- "volcsarvatory-data"
44+
- "volcsarvatory-data-test"
45+
default: null
3646
apply_water_mask:
3747
api_schema:
3848
description: Sets pixels over coastal and large inland waterbodies as invalid for phase unwrapping.
@@ -57,7 +67,6 @@ INSAR_ISCE_MULTI_BURST:
5767
steps:
5868
- name: ''
5969
image: ghcr.io/asfhyp3/hyp3-isce2
60-
image_tag: 3.0.1
6170
command:
6271
- ++process
6372
- insar_tops_burst
@@ -73,10 +82,14 @@ INSAR_ISCE_MULTI_BURST:
7382
- Ref::reference
7483
- --secondary
7584
- Ref::secondary
85+
- --publish-bucket
86+
- Ref::publish_bucket
7687
timeout: 126000 # 35 hours
7788
compute_environment: Default
7889
vcpu: 1
7990
memory: 4 # Memory is always overridden in the step function by set-batch-overrides
8091
secrets:
8192
- EARTHDATA_USERNAME
8293
- EARTHDATA_PASSWORD
94+
- PUBLISH_ACCESS_KEY_ID
95+
- PUBLISH_SECRET_ACCESS_KEY

0 commit comments

Comments
 (0)