diff options
author | Bruce Davie <bdavie@nicira.com> | 2013-11-01 10:53:23 -0700 |
---|---|---|
committer | Ben Pfaff <blp@nicira.com> | 2013-11-01 13:54:15 -0700 |
commit | 255842d95365dbe1737bcc39b0daf47ce7f84c0d (patch) | |
tree | 1955e6a525810c82a1568a1db9cd7af8aa412658 /vtep/vtep.ovsschema | |
parent | 9c0639a4637fa963ca8fa1dd87fb248f0a74b671 (diff) | |
download | openvswitch-255842d95365dbe1737bcc39b0daf47ce7f84c0d.tar.gz |
vtep: add fault notifications to physical switch and ports
Add a "switch_fault" and "port_fault" column to the appropriate
tables in the VTEP schema.
Signed-off-by: Bruce Davie <bdavie@vmware.com>
Signed-off-by: Ben Pfaff <blp@nicira.com>
Diffstat (limited to 'vtep/vtep.ovsschema')
-rw-r--r-- | vtep/vtep.ovsschema | 16 |
1 files changed, 12 insertions, 4 deletions
diff --git a/vtep/vtep.ovsschema b/vtep/vtep.ovsschema index d03d96d51..017183aa3 100644 --- a/vtep/vtep.ovsschema +++ b/vtep/vtep.ovsschema @@ -1,6 +1,6 @@ { "name": "hardware_vtep", - "cksum": "825115144 5318", + "cksum": "1365749839 5604", "tables": { "Global": { "columns": { @@ -24,7 +24,11 @@ "management_ips": { "type": {"key": {"type": "string"}, "min": 0, "max": "unlimited"}}, "tunnel_ips": { - "type": {"key": {"type": "string"}, "min": 0, "max": "unlimited"}}}, + "type": {"key": {"type": "string"}, "min": 0, "max": "unlimited"}}, + "switch_fault_status": { + "type": { + "key": "string", "min": 0, "max": "unlimited"}, + "ephemeral": true}}, "indexes": [["name"]]}, "Physical_Port": { "columns": { @@ -40,7 +44,11 @@ "minInteger": 0, "maxInteger": 4095}, "value": {"type": "uuid", "refTable": "Logical_Binding_Stats"}, - "min": 0, "max": "unlimited"}}}}, + "min": 0, "max": "unlimited"}}, + "port_fault_status": { + "type": { + "key": "string", "min": 0, "max": "unlimited"}, + "ephemeral": true}}}, "Logical_Binding_Stats": { "columns": { "bytes_from_local": {"type": "integer"}, @@ -154,4 +162,4 @@ "ephemeral": true}}, "indexes": [["target"]], "isRoot": false}}, - "version": "1.0.0"} + "version": "1.1.0"} |