From 1c5d5fa65e9726561243d8e90e0394bd5a95b0ed Mon Sep 17 00:00:00 2001 From: Jake Herrmann Date: Mon, 23 Oct 2023 12:01:33 -0800 Subject: [PATCH] Remove the `INSAR_GAMMA_TEST` job type --- .github/workflows/deploy-enterprise-test.yml | 1 - .github/workflows/deploy-enterprise.yml | 2 +- CHANGELOG.md | 2 + job_spec/INSAR_GAMMA_TEST.yml | 113 ------------------- 4 files changed, 3 insertions(+), 115 deletions(-) delete mode 100644 job_spec/INSAR_GAMMA_TEST.yml diff --git a/.github/workflows/deploy-enterprise-test.yml b/.github/workflows/deploy-enterprise-test.yml index efdf1295c..55f4974ee 100644 --- a/.github/workflows/deploy-enterprise-test.yml +++ b/.github/workflows/deploy-enterprise-test.yml @@ -24,7 +24,6 @@ jobs: job_files: >- job_spec/AUTORIFT_ITS_LIVE.yml job_spec/INSAR_GAMMA.yml - job_spec/INSAR_GAMMA_TEST.yml job_spec/RTC_GAMMA.yml job_spec/INSAR_ISCE_TEST.yml job_spec/INSAR_ISCE_BURST.yml diff --git a/.github/workflows/deploy-enterprise.yml b/.github/workflows/deploy-enterprise.yml index a051e6af4..a4d55772b 100644 --- a/.github/workflows/deploy-enterprise.yml +++ b/.github/workflows/deploy-enterprise.yml @@ -83,7 +83,7 @@ jobs: image_tag: latest product_lifetime_in_days: 365000 quota: 0 - job_files: job_spec/INSAR_GAMMA.yml job_spec/INSAR_GAMMA_TEST.yml + job_files: job_spec/INSAR_GAMMA.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 diff --git a/CHANGELOG.md b/CHANGELOG.md index 90ae481b0..9c011ed42 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [4.2.0] ### Added - Added `phase_filter_parameter` for `INSAR_GAMMA` job type. +### Removed +- Removed the `INSAR_GAMMA_TEST` job type from the `hyp3-avo` and `hyp3-enterprise-test` deployments, now that the `phase_filter_parameter` option is available for the `INSAR_GAMMA` job type. ## [4.1.2] ### Changed diff --git a/job_spec/INSAR_GAMMA_TEST.yml b/job_spec/INSAR_GAMMA_TEST.yml deleted file mode 100644 index 373a7054f..000000000 --- a/job_spec/INSAR_GAMMA_TEST.yml +++ /dev/null @@ -1,113 +0,0 @@ -INSAR_GAMMA_TEST: - required_parameters: - - granules - parameters: - granules: - default: '""' - api_schema: - type: array - minItems: 2 - maxItems: 2 - example: - - S1A_IW_SLC__1SSV_20150621T120220_20150621T120232_006471_008934_72D8 - - S1A_IW_SLC__1SSV_20150504T120217_20150504T120229_005771_00769E_EF9A - items: - description: The name of the Sentinel-1 SLC granule to process - type: string - pattern: "^S1[AB]_IW_SLC__1S[SD][VH]" - minLength: 67 - maxLength: 67 - example: S1A_IW_SLC__1SSV_20150621T120220_20150621T120232_006471_008934_72D8 - bucket_prefix: - default: '""' - include_look_vectors: - api_schema: - description: Include the look vector theta and phi files in the product package - default: false - type: boolean - include_los_displacement: - api_schema: - description: Include a GeoTIFF in the product package containing displacement values along the Line-Of-Sight (LOS) - default: false - type: boolean - include_displacement_maps: - api_schema: - description: Include displacement maps (line-of-sight and vertical) in the product package - default: false - type: boolean - include_inc_map: - api_schema: - description: Include the incidence angle map(s) in the product package - default: false - type: boolean - include_dem: - api_schema: - description: Include the DEM file in the product package - default: false - type: boolean - include_wrapped_phase: - api_schema: - description: Include the wrapped phase GeoTIFF in the product package - default: false - type: boolean - apply_water_mask: - api_schema: - description: Sets pixels over coastal and large inland waterbodies as invalid for phase unwrapping. - default: false - type: boolean - looks: - api_schema: - description: Number of looks to take in range and azimuth - type: string - default: 20x4 - enum: - - 20x4 - - 10x2 - phase_filter_parameter: - api_schema: - description: Adaptive phase filter parameter - type: number - minimum: 0.0 - exclusiveMinimum: true - maximum: 1.0 - default: 0.6 - validators: - - check_dem_coverage - tasks: - - name: '' - image: 845172464411.dkr.ecr.us-west-2.amazonaws.com/hyp3-gamma - image_tag: test - command: - - ++process - - insar - - ++omp-num-threads - - '4' - - --bucket - - '!Ref Bucket' - - --bucket-prefix - - Ref::bucket_prefix - - --include-look-vectors - - Ref::include_look_vectors - - --include-los-displacement - - Ref::include_los_displacement - - --include-displacement-maps - - Ref::include_displacement_maps - - --include-inc-map - - Ref::include_inc_map - - --include-dem - - Ref::include_dem - - --include-wrapped-phase - - Ref::include_wrapped_phase - - --apply-water-mask - - Ref::apply_water_mask - - --looks - - Ref::looks - - --phase-filter-parameter - - Ref::phase_filter_parameter - - Ref::granules - timeout: 10800 - vcpu: 1 - memory: 31600 - secrets: - - EARTHDATA_USERNAME - - EARTHDATA_PASSWORD