Skip to content

Commit

Permalink
Merge pull request #2302 from ASFHyP3/back_project
Browse files Browse the repository at this point in the history
Add GSLC plugin to LAVAS deployments
  • Loading branch information
forrestfwilliams authored May 31, 2024
2 parents d01b63f + e4279d8 commit 4a1fa7b
Show file tree
Hide file tree
Showing 4 changed files with 57 additions and 2 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/deploy-enterprise-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,9 @@ jobs:
default_credits_per_user: 0
default_application_status: APPROVED
cost_profile: DEFAULT
job_files: job_spec/INSAR_ISCE_BURST.yml
job_files: >-
job_spec/INSAR_ISCE_BURST.yml
job_spec/SRG_GSLC_CPU.yml
instance_types: r6id.xlarge,r6id.2xlarge,r6id.4xlarge,r6id.8xlarge,r6idn.xlarge,r6idn.2xlarge,r6idn.4xlarge,r6idn.8xlarge
default_max_vcpus: 640
expanded_max_vcpus: 640
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/deploy-enterprise.yml
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,9 @@ jobs:
default_credits_per_user: 0
default_application_status: APPROVED
cost_profile: DEFAULT
job_files: job_spec/INSAR_ISCE_BURST.yml
job_files: >-
job_spec/INSAR_ISCE_BURST.yml
job_spec/SRG_GSLC_CPU.yml
instance_types: r6id.xlarge,r6id.2xlarge,r6id.4xlarge,r6id.8xlarge,r6idn.xlarge,r6idn.2xlarge,r6idn.4xlarge,r6idn.8xlarge
default_max_vcpus: 640
expanded_max_vcpus: 640
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [7.5.0]

### Added
* The `SRG_GSLC_CPU` job spec
* The `SRG_GSLC_CPU` job type to the `hyp3-lavas` and `hyp3-lavas-test` HyP3 deployments

## [7.4.0]

### Added
Expand Down
45 changes: 45 additions & 0 deletions job_spec/SRG_GSLC_CPU.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
INSAR_ISCE_BURST:
required_parameters:
- granules
parameters:
granules:
default: '""'
api_schema:
type: array
minItems: 1
maxItems: 6
example:
- S1A_IW_RAW__0SDV_20231229T134339_20231229T134411_051870_064437_4F42-RAW
- S1A_IW_RAW__0SDV_20231229T134404_20231229T134436_051870_064437_5F38-RAW
items:
description: Name of the Level-0 Sentinel-1 scenes to process
type: string
pattern: "^S1[AB]_IW_RAW.*-RAW"
minLength: 71
maxLength: 71
example: S1A_IW_RAW__0SDV_20231229T134404_20231229T134436_051870_064437_5F38-RAW
bucket_prefix:
default: '""'
validators: []
cost_profiles:
EDC:
cost: 1.0
DEFAULT:
cost: 1.0
tasks:
- name: ''
image: ghcr.io/asfhyp3/hyp3-back-projection
command:
- ++process
- back_projection
- --bucket
- '!Ref Bucket'
- --bucket-prefix
timeout: 10800
vcpu: 1
memory: 31500
secrets:
- EARTHDATA_USERNAME
- EARTHDATA_PASSWORD
- ESA_USERNAME
- ESA_PASSWORD

0 comments on commit 4a1fa7b

Please sign in to comment.