diff --git a/README.md b/README.md index e990fb8..61efbcd 100644 --- a/README.md +++ b/README.md @@ -10,6 +10,7 @@ # Overview DMR++ files generator is a cloud based activity that generate DMRPP files from netCDF4 and HDF files ## 📖 Documentation +- Release note [v3.0.1.beta](https://ghrcdaac.github.io/dmrpp-generator/#v301beta). - Release note [v2.1.1](https://ghrcdaac.github.io/dmrpp-generator/#v211). - Release note [v2.1.0](https://ghrcdaac.github.io/dmrpp-generator/#v210). - Release note [v2.0.1](https://ghrcdaac.github.io/dmrpp-generator/). diff --git a/docs/index.md b/docs/index.md index 0909c80..1787a2b 100644 --- a/docs/index.md +++ b/docs/index.md @@ -1,6 +1,56 @@ # 📖 Release notes +## v3.0.1.beta +This release: +* Uses cumulus v9.1.0 +* Support `HDF5 | hdf5` extensions +* Support get_dmrpp options and flags + + +## 🚨 Breaking Changes v3.0.1.beta +To pass the flags you need to define the meta config as follow +``` +{ + ... + "meta": { + "dmrpp": { + "options": [ + { + "flag": "-M" + }, + { + "flag": "-s", + "opt": "s3://ghrcsbxw-public/dmrpp_config/file.config", + "download": "true" + }, + { + "flag": "-c", + "opt": "s3://ghrcsbxw-public/aces1cont__1/aces1cont_2002.212_v2.50.tar.cmr.json", + "download": "false" + } + ] + } + ... + } + ... +} +``` +Check [DMR++](https://docs.opendap.org/index.php?title=DMR%2B%2B) for DMRPP options +## 🏃 Migration Steps to v3.0.1.beta + release +```code +module "dmrpp-generator" { +// Change the source url in your terraform file to point to v3.0.1.beta +source = "https://github.com/ghrcdaac/dmrpp-generator/releases/download/v3.0.1.beta/dmrpp-generator.zip" +... +// Change the value of your docker image to point to v3.0.1.beta tag +docker_image = "ghrcdaac/dmrpp-generator:v3.0.1.beta" +... +} +``` + + ## v2.1.1 This release: * Support `H5` extension diff --git a/modules/dmrpp_service/main.tf b/modules/dmrpp_service/main.tf index 4ba6f6a..a81999a 100644 --- a/modules/dmrpp_service/main.tf +++ b/modules/dmrpp_service/main.tf @@ -12,7 +12,7 @@ module "dmrpp_ecs_task_module" { } module "dmrpp_service" { - source = "https://github.com/nasa/cumulus/releases/download/v8.0.0/terraform-aws-cumulus-ecs-service.zip" + source = "https://github.com/nasa/cumulus/releases/download/v9.1.0/terraform-aws-cumulus-ecs-service.zip" prefix = var.prefix