-
Notifications
You must be signed in to change notification settings - Fork 66
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
Print generated GatewayClasses, TLSRoutes, TCPRoutes and ReferenceGrants. #110
Print generated GatewayClasses, TLSRoutes, TCPRoutes and ReferenceGrants. #110
Conversation
/label tide/merge-method-squash |
for _, r := range gatewayResources { | ||
resourceCount += len(r.GatewayClasses) | ||
for _, gatewayClass := range r.GatewayClasses { | ||
gatewayClass := gatewayClass | ||
err := pr.resourcePrinter.PrintObj(&gatewayClass, os.Stdout) | ||
if err != nil { | ||
fmt.Printf("# Error printing %s GatewayClass: %v\n", gatewayClass.Name, err) | ||
} | ||
} | ||
} |
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.
It's just a nitpick, but is there any reason you repeated the outer for loop instead of having it once?
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.
Kept the original logic: print all gateways from all providers, then all HTTPRoutes etc.
If it's in one loop, then the logic would change and we'd print all resources per provider.
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.
100%
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.
Thanks @dpasiukevich!
/lgtm
/assign |
Thanks @dpasiukevich ! |
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: dpasiukevich, levikobi, LiorLieberman The full list of commands accepted by this bot can be found here. The pull request process is described here
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
What type of PR is this?
/kind feature
What this PR does / why we need it:
Print generated GatewayClasses, TLSRoutes, TCPRoutes and ReferenceGrants.
These resources are already present in the provider conversion logic but are not propagated to the printer yet. The PR fixes this.
Which issue(s) this PR fixes:
Related to the #100. Istio provider would generate TLSRoutes, TCPRoutes and ReferenceGrants for users.
Does this PR introduce a user-facing change?: