Skip to content

Commit

Permalink
fix: path and grouping
Browse files Browse the repository at this point in the history
  • Loading branch information
amfage committed Sep 5, 2023
1 parent 6b10241 commit 75f73b2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tools/generate-argo-cli-commands-nz-imagery-publish-copy.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
from typing import Dict, List, Set, Union

CATALOG_FILE = "./data/imagery/stac/catalog.json"
COMMAND = "argo submit --from wftmpl/publish-odr -n argo -f ./{0}.yaml --generate-name {1}-\n"
COMMAND = "argo submit --from wftmpl/publish-odr -n argo -f ./publish-{0}.yaml --generate-name odr-{1}-\n"
VALID_SCALES: Set[str] = {"500", "1000", "2000", "5000", "10000", "50000"}


Expand Down Expand Up @@ -99,8 +99,8 @@ def _tmp_target_edit(target: str) -> str:
"source": source,
"target": target,
"include": ".tiff?$|.json$",
"group": "1000",
"group-size": "100Gi",
"group": "2000",
"group-size": "200Gi",
}

file_name = target.split("/")[-4:-2]
Expand Down

0 comments on commit 75f73b2

Please sign in to comment.