You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Problem:
The runner today can both upload AND download files from blob storage by obtaining the needed SAS at the point of need, but it cannot obtain the task JSON that way, which blocks the way to no longer use any SAS tokens in batch task configurations, due to the fact that it requires the task JSON in the local filesystem.
Solution:
Enable obtaining the authentication metadata (for both TERRA and CoA/standalone deployments) via environment variables.
Allow the task JSON to be provided via the command-line as a URL.
When the task JSON is a URI, use the current mechanism for downloading files to download the URL and use the content as the task JSON.
Consider whether the task JSON should be placed in/near the working directory (in the local filesystem) or if it should be streamed directly to memory and held there until final task completion.
AC
Unit tests to verify correct behaviors
Consider integration tests to demonstrate correct behavior.
The text was updated successfully, but these errors were encountered:
Problem:
The runner today can both upload AND download files from blob storage by obtaining the needed SAS at the point of need, but it cannot obtain the task JSON that way, which blocks the way to no longer use any SAS tokens in batch task configurations, due to the fact that it requires the task JSON in the local filesystem.
Solution:
AC
The text was updated successfully, but these errors were encountered: