Skip to content

Commit c83bf98

Browse files
authored
Merge pull request #495 from NASA-IMPACT/iss_480__Cumulus_Upgrade_From_v20_1_2_To_v20_2_0
Cumulus upgrade from v20.1.2 to v20.2.0 Deploying to UAT - so I can proceed with the DB Engine Upgrade to Postgresql 17.4 and then run the smoke tests
2 parents 6011338 + 0ed2b17 commit c83bf98

File tree

6 files changed

+885
-846
lines changed

6 files changed

+885
-846
lines changed

app/stacks/rds-cluster/main.tf

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ module "rds_cluster" {
2323
db_admin_password = random_password.db_password.result
2424
db_admin_username = "postgres"
2525
deletion_protection = true
26-
engine_version = "13.12"
26+
engine_version = "13.20"
2727
parameter_group_family_v13 = "aurora-postgresql13"
2828
permissions_boundary_arn = local.permissions_boundary_arn
2929
prefix = var.prefix
@@ -45,6 +45,7 @@ module "rds_cluster" {
4545
vpc_id = module.vpc.vpc_id
4646
# Possible Future v20.x parameter
4747
#rejectUnauthorized = false
48+
enable_upgrade = false
4849

4950
# This part is to allow Orca v9.0.5 to succeed while doing Cumulus upgrade from 18.2.0 to 18.3.3
5051
db_parameters = [

bin/CNM_Local_SmokeTest.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,7 @@ JSON_MESSAGE=$(cat <<-EOF
7171
"deliveryTime": "2024-10-12T16:50:23.458100",
7272
"collection": "PSScene3Band",
7373
"identifier": "58ac4ab1-22dc-4475-994e-154ee2c5e004",
74+
"custom_field_id": "12345_MY_CUSTOM_ID_9876",
7475
"product":
7576
{
7677
"name": "PSScene3Band-20171201_031959_0f31",

bin/CNM_Remote_SmokeTest.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,7 @@ JSON_MESSAGE=$(cat <<-EOF
7171
"deliveryTime": "2024-10-12T16:50:23.458100",
7272
"collection": "PSScene3Band",
7373
"identifier": "58ac4ab1-22dc-4475-994e-154ee2c5e004",
74+
"custom_field_id": "12345_MY_CUSTOM_ID_9876",
7475
"product":
7576
{
7677
"name": "PSScene3Band-20171201_031959_0f31",
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
module Terraspace::Project::CumulusVersionHelper
22
def cumulus_version
3-
"v20.1.2"
3+
"v20.2.0"
44
end
55
end

package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -60,9 +60,9 @@
6060
"@aws-sdk/lib-dynamodb": "^3.621.0",
6161
"@aws-sdk/lib-storage": "^3.621.0",
6262
"@aws-sdk/types": "^3.621.0",
63-
"@cumulus/aws-client": "20.1.2",
64-
"@cumulus/cmrjs": "20.1.2",
65-
"@cumulus/common": "20.1.2",
63+
"@cumulus/aws-client": "20.2.0",
64+
"@cumulus/cmrjs": "20.2.0",
65+
"@cumulus/common": "20.2.0",
6666
"@cumulus/cumulus-message-adapter-js": "2.0.4",
6767
"@smithy/util-stream": "^2.0.17",
6868
"axios": "^1.8.3",
@@ -82,8 +82,8 @@
8282
"devDependencies": {
8383
"@ava/typescript": "^4.1.0",
8484
"@aws-sdk/client-dynamodb": "^3.621.0",
85-
"@cumulus/api-client": "20.1.2",
86-
"@cumulus/types": "20.1.2",
85+
"@cumulus/api-client": "20.2.0",
86+
"@cumulus/types": "20.2.0",
8787
"@istanbuljs/nyc-config-typescript": "^1.0.1",
8888
"@tsconfig/node20": "^20.1.4",
8989
"@types/aws-lambda": "^8.10.85",

0 commit comments

Comments
 (0)