Skip to content

Commit

Permalink
Releasing beta version of DMRPP
Browse files Browse the repository at this point in the history
  • Loading branch information
amarouane committed Aug 2, 2021
1 parent b5b38c0 commit 98b5267
Show file tree
Hide file tree
Showing 3 changed files with 52 additions and 1 deletion.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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/).
Expand Down
50 changes: 50 additions & 0 deletions docs/index.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion modules/dmrpp_service/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 98b5267

Please sign in to comment.