diff options
author | Alexis de Talhouët <adetalhouet89@gmail.com> | 2019-04-16 12:13:32 -0400 |
---|---|---|
committer | Alexis de Talhouët <adetalhouet89@gmail.com> | 2019-04-16 12:13:32 -0400 |
commit | 01cbd5c7ea7b554f229ff3735d5352038f8b4419 (patch) | |
tree | e7e9bd7c6909d08c52b6ccf0496835097a8d1acb /components/model-catalog/blueprint-model/test-blueprint | |
parent | 607c3e652400aa5f772bc353bb56f7e96869e383 (diff) |
Add support to command to execute for remote python
Change-Id: I043ea301faf87fb487204180a3294de0a76d3543
Issue-ID: CCSDK-1164
Signed-off-by: Alexis de Talhouët <adetalhouet89@gmail.com>
Diffstat (limited to 'components/model-catalog/blueprint-model/test-blueprint')
3 files changed, 13 insertions, 0 deletions
diff --git a/components/model-catalog/blueprint-model/test-blueprint/remote_scripts/Definitions/node_types.json b/components/model-catalog/blueprint-model/test-blueprint/remote_scripts/Definitions/node_types.json index d7002cdea..cd63f0091 100644 --- a/components/model-catalog/blueprint-model/test-blueprint/remote_scripts/Definitions/node_types.json +++ b/components/model-catalog/blueprint-model/test-blueprint/remote_scripts/Definitions/node_types.json @@ -29,6 +29,11 @@ "description": "Dynamic Json Content or DSL Json reference.", "required": false, "type": "json" + }, + "command": { + "description": "Command to execute.", + "required": true, + "type": "string" } } } diff --git a/components/model-catalog/blueprint-model/test-blueprint/remote_scripts/Definitions/remote_scripts.json b/components/model-catalog/blueprint-model/test-blueprint/remote_scripts/Definitions/remote_scripts.json index 7c279010d..464911478 100644 --- a/components/model-catalog/blueprint-model/test-blueprint/remote_scripts/Definitions/remote_scripts.json +++ b/components/model-catalog/blueprint-model/test-blueprint/remote_scripts/Definitions/remote_scripts.json @@ -65,6 +65,9 @@ "dependencies": [ "pyaml" ] + }, + "inputs": { + "command": "python SamplePython.py blah" } } } diff --git a/components/model-catalog/blueprint-model/test-blueprint/remote_scripts/Scripts/python/SamplePython.py b/components/model-catalog/blueprint-model/test-blueprint/remote_scripts/Scripts/python/SamplePython.py index e69de29bb..5e20e2291 100644 --- a/components/model-catalog/blueprint-model/test-blueprint/remote_scripts/Scripts/python/SamplePython.py +++ b/components/model-catalog/blueprint-model/test-blueprint/remote_scripts/Scripts/python/SamplePython.py @@ -0,0 +1,5 @@ +#!/usr/bin/python + +import sys + +print(sys.argv[1])
\ No newline at end of file |