Skip to content

Commit 73b3faa

Browse files
Merge pull request #299 from NASA-IMPACT/dev
Merge dev to master in preparation for release.
2 parents f84a95a + 0dbfa2f commit 73b3faa

File tree

6 files changed

+7
-10
lines changed

6 files changed

+7
-10
lines changed

.github/workflows/dev_viirs_deployment.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
name: uah dev viirs deployment
22

33
on:
4-
push:
5-
branches: [dev]
64
workflow_dispatch:
75

86
env:
@@ -28,7 +26,7 @@ jobs:
2826
dev-viirs-deployment:
2927
strategy:
3028
matrix:
31-
python: [3.8]
29+
python: [3.9]
3230
runs-on: ubuntu-20.04
3331
needs: [unit-tests]
3432
environment:

.github/workflows/mcp_dev_viirs_deployment.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
name: mcp dev viirs deployment
22

33
on:
4-
push:
5-
branches: [dev]
64
workflow_dispatch:
75

86
env:

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,4 +85,4 @@ To run unit test for all included Lambda functions
8585

8686
```plain
8787
tox -r
88-
```
88+
```

stack/hlsconstructs/batch.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,8 @@ def __init__(
143143
)
144144

145145
compute_resources = aws_batch.CfnComputeEnvironment.ComputeResourcesProperty(
146-
allocation_strategy="BEST_FIT_PROGRESSIVE",
146+
# allocation_strategy="BEST_FIT_PROGRESSIVE",
147+
allocation_strategy="SPOT_CAPACITY_OPTIMIZED",
147148
desiredv_cpus=0,
148149
image_id=image_id,
149150
instance_role=ecs_instance_profile.ref,

stack/stack.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ def getenv(key, default):
7474

7575
# Cron settings
7676
LAADS_CRON = getenv("HLS_LAADS_CRON", "cron(0 0/12 * * ? *)")
77-
LANDSAT_INCOMPLETE_CRON = getenv("HLS_LANDSAT_INCOMPLETE_CRON", "cron(0 12 * * ? *)")
77+
LANDSAT_INCOMPLETE_CRON = getenv("HLS_LANDSAT_INCOMPLETE_CRON", "cron(0 0/6 * * ? *)")
7878
LANDSAT_HISTORIC_INCOMPLETE_CRON = getenv(
7979
"HLS_LANDSAT_HISTORIC_INCOMPLETE_CRON", "cron(0 0/6 * * ? *)"
8080
)

tox.ini

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ passenv =
1717
HLS_*
1818
AWS_*
1919
commands =
20-
nodeenv --node=19.9.0 -p
21-
npm install -g aws-cdk@v2.143.0
20+
nodeenv --node=20.17.0 --python-virtualenv
21+
npm install -g aws-cdk@v2.155.0
2222
cdk --version
2323

2424
[testenv:dev]

0 commit comments

Comments
 (0)