-
Notifications
You must be signed in to change notification settings - Fork 388
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Unify config name and format #2843
Conversation
Codecov Report
@@ Coverage Diff @@
## main #2843 +/- ##
===========================================
+ Coverage 40.90% 60.25% +19.35%
===========================================
Files 158 284 +126
Lines 19539 23470 +3931
===========================================
+ Hits 7992 14142 +6150
+ Misses 10798 7827 -2971
- Partials 749 1501 +752
Flags with carried forward coverage won't be shown. Click here to find out more.
|
cmd/antrea-controller/config.go
Outdated
ServiceCIDR string `yaml:"serviceCIDR,omitempty"` | ||
SecondaryServiceCIDR string `yaml:"secondaryServiceCIDR,omitempty"` | ||
ServiceCIDR string `yaml:"serviceCIDR,omitempty"` | ||
ServiceCIDRv6 string `yaml:"ServiceCIDRv6,omitempty"` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ServiceCIDRv6 string `yaml:"ServiceCIDRv6,omitempty"` | |
ServiceCIDRv6 string `yaml:"serviceCIDRv6,omitempty"` |
cmd/antrea-controller/options.go
Outdated
netutils "k8s.io/utils/net" | ||
"net" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
style broken
eca2316
to
9a1ab8d
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM, DCO check failed
Use same naming and format convention for for NodeIPAM as it is for other Antrea features. Fixes: antrea-io#2839 Signed-off-by: Kobi Samoray <[email protected]>
9a1ab8d
to
24b3a02
Compare
/test-all |
Use same naming and format convention for for NodeIPAM as it is for other Antrea features. Fixes: #2839 Signed-off-by: Kobi Samoray <[email protected]>
Use same naming and format convention for for NodeIPAM as it is for
other Antrea features.
Fixes: #2839