修复域名解析--集群中单节点多IP时无法修改IP的Bug

This commit is contained in:
GoEdgeLab
2022-10-24 16:34:12 +08:00
parent 4d44175580
commit 1424922f13
3 changed files with 4349 additions and 4315 deletions

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@@ -451,6 +451,7 @@ message NodeDNSInfo {
int64 id = 1;
string name = 2;
string ipAddr = 3;
int64 nodeIPAddressId = 9;
repeated DNSRoute routes = 4;
int64 nodeClusterId = 5;
int64 dnsDomainId = 6;
@@ -462,6 +463,7 @@ message NodeDNSInfo {
message FindEnabledNodeDNSRequest {
int64 nodeId = 1;
int64 nodeClusterId = 2;
int64 nodeIPAddrId = 3;
}
message FindEnabledNodeDNSResponse {
@@ -472,6 +474,7 @@ message FindEnabledNodeDNSResponse {
message UpdateNodeDNSRequest {
int64 nodeId = 1;
string ipAddr = 2;
int64 nodeIPAddressId = 5;
int64 dnsDomainId = 3;
repeated string routes = 4;
}