-
Notifications
You must be signed in to change notification settings - Fork 392
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
feat(translator): support ext-proc dynamic metadata options #5023
Conversation
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #5023 +/- ##
==========================================
- Coverage 66.77% 66.71% -0.07%
==========================================
Files 209 209
Lines 32383 32409 +26
==========================================
- Hits 21625 21622 -3
- Misses 9458 9479 +21
- Partials 1300 1308 +8 ☔ View full report in Codecov by Sentry. |
api/v1alpha1/ext_proc_types.go
Outdated
// Default: no metadata context is sent or received from the external processor | ||
// | ||
// +optional | ||
MetadataOptions *ExtProcMetadataOptions `json:"metadataOptions,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.
prefer just Metadata
api/v1alpha1/ext_proc_types.go
Outdated
// metadata namespaces forwarded to external processor | ||
// | ||
// +optional | ||
ForwardingNamespaces []string `json:"forwardingNamespaces,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.
some options from ChatGPT
Field for Reading Field for Writing
readNamespaces writeNamespaces
inputNamespaces outputNamespaces
sourceNamespaces targetNamespaces
namespacesForRead namespacesForWrite
accessibleNamespaces writableNamespaces
I like readNamespaces / writeNamespaces
and accessibleNamespaces/writableNamespaces
1b9195a
to
51a3df4
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 thanks !
Signed-off-by: Guy Daich <guy.daich@sap.com>
Signed-off-by: Guy Daich <guy.daich@sap.com>
Signed-off-by: Guy Daich <guy.daich@sap.com>
Signed-off-by: Guy Daich <guy.daich@sap.com>
7950ffd
to
5c7fb9c
Compare
What type of PR is this?
What this PR does / why we need it:
Which issue(s) this PR fixes:
Fixes #3170, #4160
Release Notes: Yes