Add bi-directional GRPC python executor. 47/96147/3
authorBrinda Santh <bs2796@att.com>
Mon, 23 Sep 2019 14:10:58 +0000 (10:10 -0400)
committerBrinda Santh Muthuramalingam <bs2796@att.com>
Wed, 25 Sep 2019 16:01:44 +0000 (16:01 +0000)
commit807fbaae96dc75294fe17c933b43261011f33309
treefee0a5f7454a62b5b2717556bbeb96c3589b659d
parent054b1d80f19d27fb8766bf70339ec5b7a351ac2e
Add bi-directional GRPC python executor.

Python based bidirectional communication script executor microservice.

Issue-ID: CCSDK-1747
Signed-off-by: Brinda Santh <bs2796@att.com>
Change-Id: If2e8f862ca4cb97d10714df2ab1cccccef2d576a
24 files changed:
.gitignore
components/model-catalog/proto-definition/proto/BluePrintCommon.proto
ms/blueprintsprocessor/modules/inbounds/selfservice-api/src/test/kotlin/org/onap/ccsdk/cds/blueprintsprocessor/selfservice/api/BluePrintProcessingIntegrationTest.kt [new file with mode: 0644]
ms/pom.xml
ms/py-executor/blueprints_grpc/__init__.py [new file with mode: 0644]
ms/py-executor/blueprints_grpc/blueprint_processing_server.py [new file with mode: 0644]
ms/py-executor/blueprints_grpc/executor_utils.py [new file with mode: 0644]
ms/py-executor/blueprints_grpc/proto/BluePrintCommon_pb2.py [new file with mode: 0644]
ms/py-executor/blueprints_grpc/proto/BluePrintCommon_pb2_grpc.py [new file with mode: 0644]
ms/py-executor/blueprints_grpc/proto/BluePrintProcessing_pb2.py [new file with mode: 0644]
ms/py-executor/blueprints_grpc/proto/BluePrintProcessing_pb2_grpc.py [new file with mode: 0644]
ms/py-executor/blueprints_grpc/proto/__init__.py [new file with mode: 0644]
ms/py-executor/blueprints_grpc/request_header_validator_interceptor.py [new file with mode: 0644]
ms/py-executor/blueprints_grpc/script_executor_configuration.py [new file with mode: 0644]
ms/py-executor/configuration.ini [new file with mode: 0644]
ms/py-executor/docker/Dockerfile [new file with mode: 0644]
ms/py-executor/docker/distribution.xml [new file with mode: 0755]
ms/py-executor/docker/start.sh [new file with mode: 0755]
ms/py-executor/pom.xml [new file with mode: 0644]
ms/py-executor/requirements.txt [new file with mode: 0644]
ms/py-executor/server.py [new file with mode: 0644]
ms/py-executor/test/resources/sample-cba/1.0.0/Scripts/python/__init__.py [new file with mode: 0644]
ms/py-executor/test/resources/sample-cba/1.0.0/Scripts/python/module_utils.py [new file with mode: 0644]
ms/py-executor/test/resources/sample-cba/1.0.0/Scripts/python/sample_script.py [new file with mode: 0644]