Commit 1e834f7c authored by Pablo Armingol's avatar Pablo Armingol
Browse files

chore: remove debug logs from l3vpn templates and enable e2e orchestrator and...

chore: remove debug logs from l3vpn templates and enable e2e orchestrator and database cleanup in deployment script
parent 4448bc75
Loading
Loading
Loading
Loading
+0 −2
Original line number Diff line number Diff line
@@ -31,10 +31,8 @@ def generate_l3vpn_template_pair( vpn_id, svc_mtu=1500, svc_input_bandwidth=1000
    template_path = os.path.join(os.path.dirname(__file__), "l3vpn.json")
    with open(template_path, "r") as f:
        template = json.load(f)
    LOGGER.info(f"Loaded template: {json.dumps(template, indent=2)}")

    template['ietf-l3vpn-svc:l3vpn-svc']['vpn-services']['vpn-service'][0]['vpn-id'] = vpn_id
    LOGGER.info(f"VPN ID: {vpn_id}")

    for site in template['ietf-l3vpn-svc:l3vpn-svc']['sites']['site']:
        for access in site['site-network-accesses']['site-network-access']: