From 6855105304788acc050153b80241ff8613eeaab1 Mon Sep 17 00:00:00 2001 From: Qi Luo Date: Sun, 20 Feb 2022 02:46:32 +0000 Subject: [PATCH] Revert "[nvgre] Added YANG model and tests (#9136)" This reverts commit 5ce75acfa5a5a32f7cb5f987f3ba72262f85413f. --- src/sonic-yang-models/setup.py | 2 - .../tests/files/sample_config_db.json | 21 +-- .../tests/yang_model_tests/tests/nvgre.json | 25 ---- .../yang_model_tests/tests_config/nvgre.json | 125 ------------------ .../yang-models/sonic-nvgre-tunnel.yang | 114 ---------------- 5 files changed, 2 insertions(+), 285 deletions(-) delete mode 100644 src/sonic-yang-models/tests/yang_model_tests/tests/nvgre.json delete mode 100644 src/sonic-yang-models/tests/yang_model_tests/tests_config/nvgre.json delete mode 100644 src/sonic-yang-models/yang-models/sonic-nvgre-tunnel.yang diff --git a/src/sonic-yang-models/setup.py b/src/sonic-yang-models/setup.py index 17dcdeeaa5b..1f9b51b0c56 100644 --- a/src/sonic-yang-models/setup.py +++ b/src/sonic-yang-models/setup.py @@ -108,7 +108,6 @@ def run(self): './yang-models/sonic-mirror-session.yang', './yang-models/sonic-ntp.yang', './yang-models/sonic-nat.yang', - './yang-models/sonic-nvgre-tunnel.yang', './yang-models/sonic-pbh.yang', './yang-models/sonic-port.yang', './yang-models/sonic-policer.yang', @@ -166,7 +165,6 @@ def run(self): './cvlyang-models/sonic-mgmt_vrf.yang', './cvlyang-models/sonic-ntp.yang', './cvlyang-models/sonic-nat.yang', - './cvlyang-models/sonic-nvgre-tunnel.yang', './cvlyang-models/sonic-pbh.yang', './cvlyang-models/sonic-policer.yang', './cvlyang-models/sonic-port.yang', diff --git a/src/sonic-yang-models/tests/files/sample_config_db.json b/src/sonic-yang-models/tests/files/sample_config_db.json index 6c27047c9bc..e64b241349b 100644 --- a/src/sonic-yang-models/tests/files/sample_config_db.json +++ b/src/sonic-yang-models/tests/files/sample_config_db.json @@ -1540,7 +1540,7 @@ } }, - + "MCLAG_DOMAIN": { "123": { "source_ip": "12.1.1.1", @@ -1584,8 +1584,6 @@ } }, - - "POLICER": { "everflow_static_policer": { "meter_type": "bytes", @@ -1594,23 +1592,8 @@ "cbs": "12500000", "color": "aware", "red_packet_action": "drop" - } - }, - - - "NVGRE_TUNNEL": { - "tunnel_1": { - "src_ip": "10.0.0.1" - } - }, - "NVGRE_TUNNEL_MAP": { - "tunnel_1|Vlan111": { - "vlan_id": "111", - "vsid": "5000" - } + } } - - }, "SAMPLE_CONFIG_DB_UNKNOWN": { "UNKNOWN_TABLE": { diff --git a/src/sonic-yang-models/tests/yang_model_tests/tests/nvgre.json b/src/sonic-yang-models/tests/yang_model_tests/tests/nvgre.json deleted file mode 100644 index e776b0d9064..00000000000 --- a/src/sonic-yang-models/tests/yang_model_tests/tests/nvgre.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "NVGRE_TUNNEL_AND_TUNNEL_MAP": { - "desc": "NVGRE_TUNNEL with NVGRE_TUNNEL_MAP" - }, - - "NVGRE_TUNNEL_INVALID_SRC_IP": { - "desc": "INVALID src_ip value for NVGRE_TUNNEL", - "eStrKey": "InvalidValue" - }, - - "NVGRE_TUNNEL_MAP_UNEXISTING_NVGRE_TUNNEL_NAME": { - "desc": "Unexisting NVGRE_TUNNEL", - "eStrKey": "LeafRef" - }, - - "NVGRE_TUNNEL_MAP_INVALID_VLAN_ID": { - "desc": "Invalid VLAN ID", - "eStrKey": "Pattern" - }, - - "NVGRE_TUNNEL_MAP_INVALID_VSID": { - "desc": "INVALID VSID value for NVGRE_TUNNEL_MAP", - "eStrKey": "Pattern" - } -} \ No newline at end of file diff --git a/src/sonic-yang-models/tests/yang_model_tests/tests_config/nvgre.json b/src/sonic-yang-models/tests/yang_model_tests/tests_config/nvgre.json deleted file mode 100644 index 8c2588fa7d3..00000000000 --- a/src/sonic-yang-models/tests/yang_model_tests/tests_config/nvgre.json +++ /dev/null @@ -1,125 +0,0 @@ -{ - "NVGRE_TUNNEL_AND_TUNNEL_MAP": { - "sonic-vlan:sonic-vlan": { - "sonic-vlan:VLAN": { - "VLAN_LIST": [ - { - "name": "Vlan200" - } - ] - } - }, - "sonic-nvgre-tunnel:sonic-nvgre-tunnel": { - "sonic-nvgre-tunnel:NVGRE_TUNNEL": { - "NVGRE_TUNNEL_LIST": [ - { - "tunnel_name": "tunnel_1", - "src_ip": "10.0.0.1" - } - ] - }, - "sonic-nvgre-tunnel:NVGRE_TUNNEL_MAP": { - "NVGRE_TUNNEL_MAP_LIST": [ - { - "tunnel_name": "tunnel_1", - "tunnel_map_name": "Vlan200", - "vlan_id": 200, - "vsid": 5000 - } - ] - } - } - }, - - "NVGRE_TUNNEL_INVALID_SRC_IP": { - "sonic-nvgre-tunnel:sonic-nvgre-tunnel": { - "sonic-nvgre-tunnel:NVGRE_TUNNEL": { - "NVGRE_TUNNEL_LIST": [ - { - "tunnel_name": "tunnel_1", - "src_ip": "INVALID" - } - ] - } - } - }, - - "NVGRE_TUNNEL_MAP_UNEXISTING_NVGRE_TUNNEL_NAME": { - "sonic-vlan:sonic-vlan": { - "sonic-vlan:VLAN": { - "VLAN_LIST": [ - { - "name": "Vlan200" - } - ] - } - }, - "sonic-nvgre-tunnel:sonic-nvgre-tunnel": { - "sonic-nvgre-tunnel:NVGRE_TUNNEL_MAP": { - "NVGRE_TUNNEL_MAP_LIST": [ - { - "tunnel_name": "INVALID", - "tunnel_map_name": "Vlan200", - "vlan_id": 200, - "vsid": 5000 - } - ] - } - } - }, - - "NVGRE_TUNNEL_MAP_INVALID_VLAN_ID": { - "sonic-nvgre-tunnel:sonic-nvgre-tunnel": { - "sonic-nvgre-tunnel:NVGRE_TUNNEL": { - "NVGRE_TUNNEL_LIST": [ - { - "tunnel_name": "tunnel_1", - "src_ip": "10.0.0.1" - } - ] - }, - "sonic-nvgre-tunnel:NVGRE_TUNNEL_MAP": { - "NVGRE_TUNNEL_MAP_LIST": [ - { - "tunnel_name": "tunnel_1", - "tunnel_map_name": "Vlan200", - "vlan_id": 5000, - "vsid": 5000 - } - ] - } - } - }, - - "NVGRE_TUNNEL_MAP_INVALID_VSID": { - "sonic-vlan:sonic-vlan": { - "sonic-vlan:VLAN": { - "VLAN_LIST": [ - { - "name": "Vlan200" - } - ] - } - }, - "sonic-nvgre-tunnel:sonic-nvgre-tunnel": { - "sonic-nvgre-tunnel:NVGRE_TUNNEL": { - "NVGRE_TUNNEL_LIST": [ - { - "tunnel_name": "tunnel_1", - "src_ip": "10.0.0.1" - } - ] - }, - "sonic-nvgre-tunnel:NVGRE_TUNNEL_MAP": { - "NVGRE_TUNNEL_MAP_LIST": [ - { - "tunnel_name": "tunnel_1", - "tunnel_map_name": "Vlan200", - "vlan_id": 200, - "vsid": 999999999 - } - ] - } - } - } -} \ No newline at end of file diff --git a/src/sonic-yang-models/yang-models/sonic-nvgre-tunnel.yang b/src/sonic-yang-models/yang-models/sonic-nvgre-tunnel.yang deleted file mode 100644 index 42ab3921a4a..00000000000 --- a/src/sonic-yang-models/yang-models/sonic-nvgre-tunnel.yang +++ /dev/null @@ -1,114 +0,0 @@ -module sonic-nvgre-tunnel { - - yang-version 1.1; - - namespace "http://github.com/Azure/sonic-nvgre-tunnel"; - prefix nvgre; - - import ietf-inet-types { - prefix inet; - } - - import sonic-vlan { - prefix vlan; - } - - - organization - "SONiC"; - - contact - "SONiC"; - - description - "NVGRE Tunnel YANG Module for SONiC OS"; - - revision 2021-10-31 { - description - "First Revision"; - } - - container sonic-nvgre-tunnel { - - container NVGRE_TUNNEL { - - description "NVGRE_TUNNEL part of config_db.json"; - - list NVGRE_TUNNEL_LIST { - - key "tunnel_name"; - - leaf tunnel_name { - description "NVGRE Tunnel name"; - - type string { - length 1..255; - } - } - - leaf src_ip { - description "Source IP address"; - - mandatory true; - type inet:ip-address; - } - - } - /* end of NVGRE_TUNNEL_LIST */ - - } - /* end of container NVGRE_TUNNEL */ - - container NVGRE_TUNNEL_MAP { - - description "NVGRE_TUNNEL_MAP part of config_db.json"; - - list NVGRE_TUNNEL_MAP_LIST { - - key "tunnel_name tunnel_map_name"; - - leaf tunnel_name { - description "NVGRE Tunnel name"; - - type leafref { - path /nvgre:sonic-nvgre-tunnel/nvgre:NVGRE_TUNNEL/nvgre:NVGRE_TUNNEL_LIST/nvgre:tunnel_name; - } - } - - leaf tunnel_map_name { - description "NVGRE Tunnel map name"; - - type string { - length 1..255; - } - } - - leaf vlan_id { - description "VLAN identifier"; - - mandatory true; - type uint16 { - range 1..4094; - } - } - - leaf vsid { - description "Virtual Subnet Identifier"; - - mandatory true; - type uint32 { - range 0..16777214; - } - } - - } - /* end of NVGRE_TUNNEL_MAP_LIST */ - - } - /* end of container NVGRE_TUNNEL_MAP */ - - } - /* end of container sonic-nvgre-tunnel */ - -} -/* end of module sonic-nvgre-tunnel */