Skip to content

Commit

Permalink
Don't copy all files. Use different S3 key. #1034
Browse files Browse the repository at this point in the history
  • Loading branch information
EmileSonneveld committed Feb 6, 2025
1 parent ca59103 commit 2c8bf16
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions openeogeotrellis/deploy/kube.py
Original file line number Diff line number Diff line change
Expand Up @@ -238,8 +238,8 @@ def _cwl_insar(args: ProcessArgs, env: EvalEnv):
dockerPull: registry.stag.warsaw.openeo.dataspace.copernicus.eu/rand/openeo_insar:latest
EnvVarRequirement:
envDef:
AWS_ACCESS_KEY_ID: {json.dumps(os.environ.get("AWS_ACCESS_KEY_ID", ""))}
AWS_SECRET_ACCESS_KEY: {json.dumps(os.environ.get("AWS_SECRET_ACCESS_KEY", ""))}
AWS_ACCESS_KEY_ID: {json.dumps(os.environ.get("SWIFT_ACCESS_KEY_ID", ""))}
AWS_SECRET_ACCESS_KEY: {json.dumps(os.environ.get("SWIFT_SECRET_ACCESS_KEY", ""))}
inputs:
input_base64_json:
type: string
Expand All @@ -251,7 +251,7 @@ def _cwl_insar(args: ProcessArgs, env: EvalEnv):
type: array
items: File
outputBinding:
glob: "*.*"
glob: "*2images*"
"""
)
# correlation_id = get_job_id(default=None) or get_request_id(default=None)
Expand Down

0 comments on commit 2c8bf16

Please sign in to comment.