Skip to content

Commit 7dd475c

Browse files
authored
Merge pull request #2883 from ASFHyP3/develop
Release v10.11.3
2 parents a9ce1d7 + 0105b50 commit 7dd475c

File tree

5 files changed

+33
-2
lines changed

5 files changed

+33
-2
lines changed

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +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.3]
8+
9+
### Added
10+
- Added `PUBLISH` step to `INSAR_ISCE` and `ARIA_RAIDER` job specs.
11+
12+
### Changed
13+
- Updated `PUBLISH` step of `ARIA_S1_GUNW` job spec to run on the same compute environment as the preceding steps, allowing the container to run on an already-provisioned EC2 instance.
14+
- Adjust Batch job IAM permissions to allow HyP3 job steps to publish to any SNS topic. Allows jobs to publish to the [ingest-adapter](https://github.com/ASFHyP3/ingest-adapter)'s SNS topic across AWS accounts.
15+
716
## [10.11.2]
817

918
### Changed

apps/compute-cf.yml.j2

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@ Resources:
179179
Resource: !Sub "arn:aws:s3:::${ContentBucket}/*"
180180
- Effect: Allow
181181
Action: sns:Publish
182-
Resource: !Sub "arn:aws:sns:${AWS::Region}:${AWS::AccountId}:*"
182+
Resource: arn:aws:sns:*
183183

184184
BatchServiceRole:
185185
Type: {{ 'Custom::JplRole' if security_environment in ('JPL', 'JPL-public') else 'AWS::IAM::Role' }}

job_spec/ARIA_RAIDER.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,3 +51,14 @@ ARIA_RAIDER:
5151
- RAIDER_HRES_EMAIL
5252
- RAIDER_HRES_API_KEY
5353
- RAIDER_HRES_URL
54+
- name: PUBLISH
55+
image: ghcr.io/asfhyp3/ingest-adapter
56+
command:
57+
- Ref::job_id
58+
timeout: 600
59+
compute_environment: Default
60+
vcpu: 1
61+
memory: 512
62+
secrets:
63+
- TOPIC_ARN
64+
- HYP3_URL

job_spec/ARIA_S1_GUNW.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ ARIA_S1_GUNW:
8080
command:
8181
- Ref::job_id
8282
timeout: 600
83-
compute_environment: Default
83+
compute_environment: AriaS1Gunw
8484
vcpu: 1
8585
memory: 512
8686
secrets:

job_spec/INSAR_ISCE.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -159,3 +159,14 @@ INSAR_ISCE:
159159
- RAIDER_HRES_EMAIL
160160
- RAIDER_HRES_API_KEY
161161
- RAIDER_HRES_URL
162+
- name: PUBLISH
163+
image: ghcr.io/asfhyp3/ingest-adapter
164+
command:
165+
- Ref::job_id
166+
timeout: 600
167+
compute_environment: InsarIsceAria
168+
vcpu: 1
169+
memory: 512
170+
secrets:
171+
- TOPIC_ARN
172+
- HYP3_URL

0 commit comments

Comments
 (0)