Skip to content

Commit a6666e0

Browse files
committed
making gateway optional attribute
1 parent 7ea9969 commit a6666e0

File tree

2 files changed

+0
-6
lines changed

2 files changed

+0
-6
lines changed

contivModel.go

-5
Original file line numberDiff line numberDiff line change
@@ -1834,11 +1834,6 @@ func ValidateNetwork(obj *Network) error {
18341834
return errors.New("encap string invalid format")
18351835
}
18361836

1837-
gatewayMatch := regexp.MustCompile("^([0-9]{1,3}?.[0-9]{1,3}?.[0-9]{1,3}?.[0-9]{1,3}?)$")
1838-
if gatewayMatch.MatchString(obj.Gateway) == false {
1839-
return errors.New("gateway string invalid format")
1840-
}
1841-
18421837
if len(obj.NetworkName) > 64 {
18431838
return errors.New("networkName string too long")
18441839
}

network.json

-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,6 @@
3636
},
3737
"gateway": {
3838
"type": "string",
39-
"format": "^([0-9]{1,3}?.[0-9]{1,3}?.[0-9]{1,3}?.[0-9]{1,3}?)$",
4039
"title": "Gateway",
4140
"showSummary": true
4241
}

0 commit comments

Comments
 (0)