Revert "Removing deprecated/unused/outdated code" 12/10612/1
authorsousaedu <eduardo.sousa@canonical.com>
Fri, 9 Apr 2021 16:03:02 +0000 (18:03 +0200)
committersousaedu <eduardo.sousa@canonical.com>
Fri, 9 Apr 2021 16:03:22 +0000 (18:03 +0200)
commit51cc9c4c78bb54c84a5d2399207d206eb30ea247
treeca2a3d924f120ea5fac61ac336fe51effe83b7c8
parent9f40121f66e644ddf700720d8d4bdf464f6dd414
Revert "Removing deprecated/unused/outdated code"

This reverts commit 9f40121f66e644ddf700720d8d4bdf464f6dd414.

Change-Id: I3a414c4f253285c87b662af89ec418b762c0c44b
Signed-off-by: sousaedu <eduardo.sousa@canonical.com>
187 files changed:
RO-client/Makefile [new file with mode: 0644]
RO-client/README.rst [new file with mode: 0644]
RO-client/debian/python3-osm-roclient.postinst [new file with mode: 0755]
RO-client/osm_roclient/roclient.py [new file with mode: 0755]
RO-client/requirements.txt [new file with mode: 0644]
RO-client/setup.py [new file with mode: 0644]
RO-client/stdeb.cfg [new file with mode: 0644]
RO-client/tox.ini [new file with mode: 0644]
RO/MANIFEST.in [new file with mode: 0644]
RO/Makefile [new file with mode: 0644]
RO/README.rst [new file with mode: 0644]
RO/debian/python3-osm-ro.postinst [new file with mode: 0755]
RO/osm_ro/__init__.py [new file with mode: 0644]
RO/osm_ro/console_proxy_thread.py [new file with mode: 0644]
RO/osm_ro/database_utils/dump_db.sh [new file with mode: 0755]
RO/osm_ro/database_utils/init_mano_db.sh [new file with mode: 0755]
RO/osm_ro/database_utils/install-db-server.sh [new file with mode: 0755]
RO/osm_ro/database_utils/mano_db_structure.sql [new file with mode: 0644]
RO/osm_ro/database_utils/migrate_mano_db.sh [new file with mode: 0755]
RO/osm_ro/database_utils/migrations/down/34_remove_wim_tables.sql [new file with mode: 0644]
RO/osm_ro/database_utils/migrations/down/35_remove_sfc_ingress_and_egress.sql [new file with mode: 0644]
RO/osm_ro/database_utils/migrations/up/34_add_wim_tables.sql [new file with mode: 0644]
RO/osm_ro/database_utils/migrations/up/35_add_sfc_ingress_and_egress.sql [new file with mode: 0644]
RO/osm_ro/db_base.py [new file with mode: 0644]
RO/osm_ro/http_tools/__init__.py [new file with mode: 0644]
RO/osm_ro/http_tools/errors.py [new file with mode: 0644]
RO/osm_ro/http_tools/handler.py [new file with mode: 0644]
RO/osm_ro/http_tools/request_processing.py [new file with mode: 0644]
RO/osm_ro/http_tools/tests/__init__.py [new file with mode: 0644]
RO/osm_ro/http_tools/tests/test_errors.py [new file with mode: 0644]
RO/osm_ro/http_tools/tests/test_handler.py [new file with mode: 0644]
RO/osm_ro/http_tools/tox.ini [new file with mode: 0644]
RO/osm_ro/httpserver.py [new file with mode: 0644]
RO/osm_ro/nfvo.py [new file with mode: 0644]
RO/osm_ro/nfvo_db.py [new file with mode: 0644]
RO/osm_ro/openmano_schemas.py [new file with mode: 0644]
RO/osm_ro/openmanoclient.py [new file with mode: 0644]
RO/osm_ro/openmanod.cfg [new file with mode: 0644]
RO/osm_ro/openmanod.py [new file with mode: 0755]
RO/osm_ro/osm-ro.service [new file with mode: 0644]
RO/osm_ro/scripts/RO-of [new file with mode: 0755]
RO/osm_ro/scripts/RO-start.sh [new file with mode: 0755]
RO/osm_ro/scripts/get-options.sh [new file with mode: 0644]
RO/osm_ro/scripts/install-lib-osm-openvim.sh [new file with mode: 0755]
RO/osm_ro/scripts/install-openmano-service.sh [new file with mode: 0755]
RO/osm_ro/scripts/install-openmano.sh [new file with mode: 0755]
RO/osm_ro/scripts/install-osm-im.sh [new file with mode: 0755]
RO/osm_ro/scripts/openmano-report [new file with mode: 0755]
RO/osm_ro/scripts/service-openmano [new file with mode: 0755]
RO/osm_ro/sdn.py [new file with mode: 0755]
RO/osm_ro/tests/__init__.py [new file with mode: 0644]
RO/osm_ro/tests/db_helpers.py [new file with mode: 0644]
RO/osm_ro/tests/helpers.py [new file with mode: 0644]
RO/osm_ro/tests/test_db.py [new file with mode: 0644]
RO/osm_ro/tests/test_utils.py [new file with mode: 0644]
RO/osm_ro/utils.py [new file with mode: 0644]
RO/osm_ro/vim_thread.py [new file with mode: 0644]
RO/osm_ro/vmwarecli.py [new file with mode: 0755]
RO/osm_ro/wim/__init__.py [new file with mode: 0644]
RO/osm_ro/wim/actions.py [new file with mode: 0644]
RO/osm_ro/wim/engine.py [new file with mode: 0644]
RO/osm_ro/wim/errors.py [new file with mode: 0644]
RO/osm_ro/wim/http_handler.py [new file with mode: 0644]
RO/osm_ro/wim/persistence.py [new file with mode: 0644]
RO/osm_ro/wim/schemas.py [new file with mode: 0644]
RO/osm_ro/wim/tests/__init__.py [new file with mode: 0644]
RO/osm_ro/wim/tests/fixtures.py [new file with mode: 0644]
RO/osm_ro/wim/tests/test_actions.py [new file with mode: 0644]
RO/osm_ro/wim/tests/test_engine.py [new file with mode: 0644]
RO/osm_ro/wim/tests/test_http_handler.py [new file with mode: 0644]
RO/osm_ro/wim/tests/test_persistence.py [new file with mode: 0644]
RO/osm_ro/wim/tests/test_wim_thread.py [new file with mode: 0644]
RO/osm_ro/wim/tox.ini [new file with mode: 0644]
RO/osm_ro/wim/wan_link_actions.py [new file with mode: 0644]
RO/osm_ro/wim/wim_thread.py [new file with mode: 0644]
RO/osm_ro/wim/wimconn_odl.py [new file with mode: 0644]
RO/requirements.txt [new file with mode: 0644]
RO/setup.py [new file with mode: 0755]
RO/stdeb.cfg [new file with mode: 0644]
RO/test/RO_tests/afiinity_vnf/scenario_simple_2_vnf_afinnity.yaml [new file with mode: 0644]
RO/test/RO_tests/afiinity_vnf/vnfd_linux_2_vnfc_affinity.yaml [new file with mode: 0644]
RO/test/RO_tests/empy_volume/scenario_additional_disk_empty_volume.yaml [new file with mode: 0644]
RO/test/RO_tests/empy_volume/vnfd_additional_disk_empty_volume.yaml [new file with mode: 0644]
RO/test/RO_tests/floating_ip/scenario_floating_ip.yaml [new file with mode: 0644]
RO/test/RO_tests/floating_ip/vnfd_floating_ip.yaml [new file with mode: 0644]
RO/test/RO_tests/image_based_volume/scenario_additional_disk_based_image.yaml [new file with mode: 0644]
RO/test/RO_tests/image_based_volume/vnfd_additional_disk_based_image.yaml [new file with mode: 0644]
RO/test/RO_tests/no_port_security/scenario_vnf_no_port_security.yaml [new file with mode: 0644]
RO/test/RO_tests/no_port_security/vnfd_no_port_security.yaml [new file with mode: 0644]
RO/test/RO_tests/passthrough/scenario_p2p_passthrough.yaml [new file with mode: 0644]
RO/test/RO_tests/passthrough/vnfd_1passthrough.yaml [new file with mode: 0644]
RO/test/RO_tests/pmp_passthrough/scenario_pmp_passthrough.yaml [new file with mode: 0644]
RO/test/RO_tests/pmp_passthrough/vnfd_1passthrough.yaml [new file with mode: 0644]
RO/test/RO_tests/pmp_sriov/scenario_pmp_sriov.yaml [new file with mode: 0644]
RO/test/RO_tests/pmp_sriov/vnfd_1sriov.yaml [new file with mode: 0644]
RO/test/RO_tests/pmp_sriov_passthrough/scenario_pmp_sriov_passthrough.yaml [new file with mode: 0644]
RO/test/RO_tests/pmp_sriov_passthrough/vnfd_1passthrough.yaml [new file with mode: 0644]
RO/test/RO_tests/pmp_sriov_passthrough/vnfd_1sriov.yaml [new file with mode: 0644]
RO/test/RO_tests/simple_2_vnf/scenario_simple_2_vnf.yaml [new file with mode: 0644]
RO/test/RO_tests/simple_2_vnf/vnfd_linux.yaml [new file with mode: 0644]
RO/test/RO_tests/simple_cloud_init/scenario_simple-cloud-init.yaml [new file with mode: 0644]
RO/test/RO_tests/simple_cloud_init/vnfd_linux-cloud-init.yaml [new file with mode: 0644]
RO/test/RO_tests/simple_count3/scenario_linux_count3.yaml [new file with mode: 0644]
RO/test/RO_tests/simple_count3/vnfd_count3.yaml [new file with mode: 0644]
RO/test/RO_tests/simple_linux/scenario_simple_linux.yaml [new file with mode: 0644]
RO/test/RO_tests/simple_linux/vnfd_linux.yaml [new file with mode: 0644]
RO/test/RO_tests/simple_multi_vnfc/scenario_multi_vnfc.yaml [new file with mode: 0644]
RO/test/RO_tests/simple_multi_vnfc/vnfd_linux_2VMs_v02.yaml [new file with mode: 0644]
RO/test/RO_tests/sr_iov/scenario_p2p_sriov.yaml [new file with mode: 0644]
RO/test/RO_tests/sr_iov/vnfd_1sriov.yaml [new file with mode: 0644]
RO/test/RO_tests/sriov_passthrough/scenario_p2p_sriov_passthrough.yaml [new file with mode: 0644]
RO/test/RO_tests/sriov_passthrough/vnfd_1passthrough.yaml [new file with mode: 0644]
RO/test/RO_tests/sriov_passthrough/vnfd_1sriov.yaml [new file with mode: 0644]
RO/test/RO_tests/v3_2vdu_set_ip_mac/scenario_2vdu_set_ip_mac.yaml [new file with mode: 0644]
RO/test/RO_tests/v3_2vdu_set_ip_mac/vnfd_2vdu_set_ip_mac.yaml [new file with mode: 0644]
RO/test/RO_tests/v3_2vdu_set_ip_mac/vnfd_2vdu_set_ip_mac2.yaml [new file with mode: 0644]
RO/test/basictest.sh [new file with mode: 0755]
RO/test/test-multivim.sh [new file with mode: 0755]
RO/test/test_RO.py [new file with mode: 0755]
RO/test/test_on_container.sh [new file with mode: 0755]
RO/test/test_openmanocli.sh [new file with mode: 0755]
RO/test/test_openmanoclient.py [new file with mode: 0755]
RO/test/test_osconnector.py [new file with mode: 0755]
RO/test/test_vimconn.sh [new file with mode: 0755]
RO/tox.ini [new file with mode: 0644]
charms/.gitignore [new file with mode: 0644]
charms/README.md [new file with mode: 0644]
charms/layers/openmano/README.md [new file with mode: 0644]
charms/layers/openmano/config.yaml [new file with mode: 0644]
charms/layers/openmano/icon.svg [new file with mode: 0644]
charms/layers/openmano/layer.yaml [new file with mode: 0644]
charms/layers/openmano/metadata.yaml [new file with mode: 0644]
charms/layers/openmano/reactive/layer_openmano.py [new file with mode: 0644]
charms/layers/openmano/scripts/create-datacenter.sh [new file with mode: 0755]
charms/layers/openmano/scripts/create-tenant.sh [new file with mode: 0755]
charms/layers/openmano/scripts/init_mano_db.sh [new file with mode: 0755]
charms/layers/openmano/templates/openmanod.cfg [new file with mode: 0644]
charms/layers/openmano/tests/00-setup [new file with mode: 0755]
charms/layers/openmano/tests/10-deploy [new file with mode: 0755]
deprecated/vmwarerecli.py [new file with mode: 0755]
docker/Dockerfile-fromdeb [new file with mode: 0644]
docker/docker-compose-3c.yml [new file with mode: 0644]
docker/docker-compose.yaml [new file with mode: 0644]
docker/tests.dockerfile [new file with mode: 0644]
docker/tests.yml [new file with mode: 0644]
instance-scenarios/examples/instance-creation-complex2.yaml [new file with mode: 0644]
instance-scenarios/examples/instance-creation-complex4.yaml [new file with mode: 0644]
scenarios/examples/complex.yaml [new file with mode: 0644]
scenarios/examples/complex2.yaml [new file with mode: 0644]
scenarios/examples/complex3.yaml [new file with mode: 0644]
scenarios/examples/complex4.yaml [new file with mode: 0644]
scenarios/examples/complex5.yaml [new file with mode: 0644]
scenarios/examples/scenario_vnf_additional_disk_based_image.yaml [new file with mode: 0644]
scenarios/examples/scenario_vnf_additional_disk_empty_volume.yaml [new file with mode: 0644]
scenarios/examples/scenario_vnf_floating_ip.yaml [new file with mode: 0644]
scenarios/examples/scenario_vnf_no_additional_devices.yaml [new file with mode: 0644]
scenarios/examples/scenario_vnf_no_port_security.yaml [new file with mode: 0644]
scenarios/examples/simple-cloud-init.yaml [new file with mode: 0644]
scenarios/examples/simple.yaml [new file with mode: 0644]
scenarios/examples/v3_2linux_sriov.yaml [new file with mode: 0644]
scenarios/examples/v3_3vdu_2vnf_nsd.yaml [new file with mode: 0644]
scenarios/examples/v3_3vnf_2vdu_1vnffg_nsd.yaml [new file with mode: 0644]
scenarios/scenario-template.yaml [new file with mode: 0644]
scenarios/scenario-template2.yaml [new file with mode: 0644]
sdn/sdn_port_mapping.yaml [new file with mode: 0644]
test-docker/Dockerfile-devops [new file with mode: 0644]
test-docker/test-gen-devops.sh [new file with mode: 0755]
test-docker/test-gen-local.sh [new file with mode: 0755]
vnfs/examples/dataplaneVNF1.yaml [new file with mode: 0644]
vnfs/examples/dataplaneVNF2.yaml [new file with mode: 0644]
vnfs/examples/dataplaneVNF3.yaml [new file with mode: 0644]
vnfs/examples/dataplaneVNF4.yaml [new file with mode: 0644]
vnfs/examples/dataplaneVNF_2VMs.yaml [new file with mode: 0644]
vnfs/examples/dataplaneVNF_2VMs_v02.yaml [new file with mode: 0644]
vnfs/examples/linux-cloud-init.yaml [new file with mode: 0644]
vnfs/examples/linux.yaml [new file with mode: 0644]
vnfs/examples/linux_2VMs_v02.yaml [new file with mode: 0644]
vnfs/examples/v3_2vdu_vnfd.yaml [new file with mode: 0644]
vnfs/examples/v3_3vdu_vnfd.yaml [new file with mode: 0644]
vnfs/examples/v3_linux_sriov.yaml [new file with mode: 0644]
vnfs/examples/vnf_additional_disk_based_image.yaml [new file with mode: 0644]
vnfs/examples/vnf_additional_disk_empty_volume.yaml [new file with mode: 0644]
vnfs/examples/vnf_floating_ip.yaml [new file with mode: 0644]
vnfs/examples/vnf_no_additional_devices.yaml [new file with mode: 0644]
vnfs/examples/vnf_no_port_security.yaml [new file with mode: 0644]
vnfs/vnf-template-2vm.yaml [new file with mode: 0644]
vnfs/vnf-template.yaml [new file with mode: 0644]