@@ -728,6 +728,7 @@ CREATE TABLE IF NOT EXISTS pod_cluster (
728728 region CHAR (64 ) DEFAULT ' ' ,
729729 sub_domain CHAR (64 ) DEFAULT ' ' ,
730730 domain CHAR (64 ) DEFAULT ' ' ,
731+ uid CHAR (64 ) DEFAULT ' ' ,
731732 lcuuid CHAR (64 ) DEFAULT ' ' ,
732733 created_at DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP ,
733734 updated_at DATETIME NOT NULL ON UPDATE CURRENT_TIMESTAMP DEFAULT CURRENT_TIMESTAMP ,
@@ -859,6 +860,7 @@ CREATE TABLE IF NOT EXISTS pod_namespace (
859860 region CHAR (64 ) DEFAULT ' ' ,
860861 sub_domain CHAR (64 ) DEFAULT ' ' ,
861862 domain CHAR (64 ) DEFAULT ' ' ,
863+ uid CHAR (64 ) DEFAULT ' ' ,
862864 lcuuid CHAR (64 ) DEFAULT ' ' ,
863865 created_at DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP ,
864866 updated_at DATETIME NOT NULL ON UPDATE CURRENT_TIMESTAMP DEFAULT CURRENT_TIMESTAMP ,
@@ -2727,7 +2729,7 @@ CREATE TABLE IF NOT EXISTS custom_service (
27272729 id INTEGER NOT NULL AUTO_INCREMENT PRIMARY KEY ,
27282730 name VARCHAR (128 ) NOT NULL ,
27292731 type INTEGER DEFAULT 0 COMMENT ' 0: unknown 1: IP 2: PORT 3: chost 4: pod_service 5: pod_group' ,
2730- match_type INTEGER DEFAULT 0 COMMENT ' 0: unkonwn 1: name match 2: uid match' ,
2732+ match_type INTEGER DEFAULT 1 COMMENT ' 0: unkonwn 1: name match 2: uid match' ,
27312733 epc_id INTEGER DEFAULT 0 ,
27322734 pod_cluster_id INTEGER DEFAULT 0 ,
27332735 pod_namespace_id INTEGER DEFAULT 0 ,
0 commit comments