-
Notifications
You must be signed in to change notification settings - Fork 83
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
State Syncer: add ability to call registry #385
Conversation
Signed-off-by: Ryan Tay <[email protected]>
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## master #385 +/- ##
==========================================
- Coverage 77.17% 76.96% -0.21%
==========================================
Files 75 75
Lines 10593 10716 +123
==========================================
+ Hits 8175 8248 +73
- Misses 1995 2041 +46
- Partials 423 427 +4 ☔ View full report in Codecov by Sentry. |
admiral/cmd/admiral/cmd/root.go
Outdated
@@ -268,11 +274,6 @@ func GetRootCmd(args []string) *cobra.Command { | |||
rootCmd.PersistentFlags().StringSliceVar(¶ms.IngressVSExportToNamespaces, "ingress_vs_export_to_namespaces", []string{"istio-system"}, "List of namespaces where the ingress VS should be exported") | |||
rootCmd.PersistentFlags().StringVar(¶ms.IngressLBPolicy, "ingress_lb_policy", "round_robin", "loadbalancer policy for ingress destination rule (round_robin/random/passthrough/least_request)") | |||
|
|||
// Flags pertaining to VS based routing in-cluster |
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.
Removed because?
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.
Will add this back, they weren't in the inner source repo
Signed-off-by: Ryan Tay <[email protected]>
Integrates registry API into registry client.