@aws/ml-container-creator 0.2.2 → 0.2.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +298 -62
- package/bin/cli.js +4 -3
- package/config/parameter-schema.json +1 -1
- package/package.json +1 -1
- package/src/app.js +17 -1
- package/src/lib/auto-prompt-builder.js +172 -0
- package/src/lib/ci-register-helpers.js +1 -1
- package/src/lib/cli-handler.js +1 -1
- package/src/lib/config-manager.js +177 -3
- package/src/lib/parameter-schema-validator.js +10 -10
- package/src/lib/prompt-runner.js +51 -7
- package/src/lib/prompts.js +7 -7
- package/src/lib/template-manager.js +2 -2
- package/templates/do/clean +6 -6
- package/templates/do/config +6 -6
- package/templates/do/deploy +5 -5
- package/templates/do/export +5 -5
- package/templates/do/logs +4 -4
- package/templates/do/register +3 -3
- package/templates/do/test +4 -4
package/templates/do/test
CHANGED
|
@@ -10,9 +10,9 @@ set -o pipefail
|
|
|
10
10
|
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
|
11
11
|
source "${SCRIPT_DIR}/config"
|
|
12
12
|
|
|
13
|
-
<% if (deploymentTarget === '
|
|
13
|
+
<% if (deploymentTarget === 'realtime-inference') { %>
|
|
14
14
|
# ============================================================
|
|
15
|
-
# SageMaker
|
|
15
|
+
# SageMaker Real-Time Inference Testing
|
|
16
16
|
# ============================================================
|
|
17
17
|
|
|
18
18
|
# Parse arguments
|
|
@@ -295,7 +295,7 @@ fi
|
|
|
295
295
|
|
|
296
296
|
<% } else if (deploymentTarget === 'async-inference') { %>
|
|
297
297
|
# ============================================================
|
|
298
|
-
# SageMaker
|
|
298
|
+
# SageMaker Async Inference Testing
|
|
299
299
|
# ============================================================
|
|
300
300
|
|
|
301
301
|
# Parse arguments
|
|
@@ -875,7 +875,7 @@ fi
|
|
|
875
875
|
|
|
876
876
|
<% } else if (deploymentTarget === 'batch-transform') { %>
|
|
877
877
|
# ============================================================
|
|
878
|
-
# SageMaker
|
|
878
|
+
# SageMaker Batch Transform Testing
|
|
879
879
|
# ============================================================
|
|
880
880
|
|
|
881
881
|
# Parse arguments: local or batch test mode
|