Add Revised Tosca-loader 96/1396/1
authorxinhuili <lxinhui@vmware.com>
Wed, 14 Aug 2019 05:59:25 +0000 (13:59 +0800)
committerxinhuili <lxinhui@vmware.com>
Wed, 14 Aug 2019 05:59:25 +0000 (13:59 +0800)
commit67a7cb59e0ff498eff5e8fe23fdd19db77ed8a22
treef10c0782817f86d940a5f27a423eebab9f32c38a
parent5e34d0af7989d7423ba621b55003b8b1639ca809
Add Revised Tosca-loader

This patch is to add new tosca-loader

Signed-off-by: XINHUI LI <lxinhui@vmware.com>
Change-Id: I249006d8f4961fe88601cdcf4c5004170292ddca
43 files changed:
src/tosca-loader/.dockerignore [new file with mode: 0644]
src/tosca-loader/.gitignore [new file with mode: 0644]
src/tosca-loader/Dockerfile [new file with mode: 0644]
src/tosca-loader/Jenkinsfile [new file with mode: 0644]
src/tosca-loader/Makefile [new file with mode: 0644]
src/tosca-loader/README.md [new file with mode: 0644]
src/tosca-loader/VERSION [new file with mode: 0644]
src/tosca-loader/book.json [new file with mode: 0644]
src/tosca-loader/ci_scripts/push_containers.sh [new file with mode: 0755]
src/tosca-loader/ci_scripts/push_manifest.sh [new file with mode: 0755]
src/tosca-loader/docs/GLOSSARY.md [new file with mode: 0644]
src/tosca-loader/docs/README.md [new file with mode: 0644]
src/tosca-loader/docs/SUMMARY.md [new file with mode: 0644]
src/tosca-loader/docs/devel.md [new file with mode: 0644]
src/tosca-loader/loader/Dockerfile.tosca-loader [new file with mode: 0644]
src/tosca-loader/loader/tosca-loader.sh [new file with mode: 0755]
src/tosca-loader/src/grpc_client/KEYS.reference.py [new file with mode: 0644]
src/tosca-loader/src/grpc_client/__init__.py [new file with mode: 0644]
src/tosca-loader/src/grpc_client/main.py [new file with mode: 0644]
src/tosca-loader/src/grpc_client/models_accessor.py [new file with mode: 0644]
src/tosca-loader/src/grpc_client/resources.py [new file with mode: 0644]
src/tosca-loader/src/main.py [new file with mode: 0644]
src/tosca-loader/src/tosca/__init__.py [new file with mode: 0644]
src/tosca-loader/src/tosca/custom_types/.gitignore [new file with mode: 0644]
src/tosca-loader/src/tosca/default.py [new file with mode: 0644]
src/tosca-loader/src/tosca/generator.py [new file with mode: 0644]
src/tosca-loader/src/tosca/parser.py [new file with mode: 0644]
src/tosca-loader/src/tosca/xtarget/tosca.xtarget [new file with mode: 0644]
src/tosca-loader/src/tosca/xtarget/tosca_keys.xtarget [new file with mode: 0644]
src/tosca-loader/src/web_server/__init__.py [new file with mode: 0644]
src/tosca-loader/src/web_server/main.py [new file with mode: 0644]
src/tosca-loader/src/xos-tosca-config-schema.yaml [new file with mode: 0644]
src/tosca-loader/test/helpers.py [new file with mode: 0644]
src/tosca-loader/test/out/.gitignore [new file with mode: 0644]
src/tosca-loader/test/test_config.yaml [new file with mode: 0644]
src/tosca-loader/test/test_grpc_models_accessor.py [new file with mode: 0644]
src/tosca-loader/test/test_tosca_generator.py [new file with mode: 0644]
src/tosca-loader/test/test_tosca_parser.py [new file with mode: 0644]
src/tosca-loader/test/test_tosca_parser_e2e.py [new file with mode: 0644]
src/tosca-loader/test/tosca/link.yaml [new file with mode: 0644]
src/tosca-loader/test/tosca/must_exist.yaml [new file with mode: 0644]
src/tosca-loader/test/tosca/test.yaml [new file with mode: 0644]
src/tosca-loader/unittest.cfg [new file with mode: 0644]