Skip to content

Commit e96dfaf

Browse files
committed
Merge pull request contiv-experimental#11 from abhinandanpb/master
making gateway optional attribute
2 parents b0340fc + a6666e0 commit e96dfaf

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
@@ -1839,11 +1839,6 @@ func ValidateNetwork(obj *Network) error {
18391839
return errors.New("encap string invalid format")
18401840
}
18411841

1842-
gatewayMatch := regexp.MustCompile("^([0-9]{1,3}?.[0-9]{1,3}?.[0-9]{1,3}?.[0-9]{1,3}?)$")
1843-
if gatewayMatch.MatchString(obj.Gateway) == false {
1844-
return errors.New("gateway string invalid format")
1845-
}
1846-
18471842
if len(obj.NetworkName) > 64 {
18481843
return errors.New("networkName string too long")
18491844
}

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)