-
Notifications
You must be signed in to change notification settings - Fork 1
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
chore: api changes #159
chore: api changes #159
Conversation
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.
Pull Request Overview
This PR makes several tenant API changes to improve error handling, configurable queue behaviors, and client configurations as part of fixing issue #143. The changes update field names and descriptions across the processor, CRD, and API definitions while adding new configuration options like blocking and compression parameters.
- Renamed and added error mode fields in processor and tenant types.
- Introduced a new blocking field for queue settings.
- Updated CRD documentation and API deepcopy functions as well as HTTP client and TLS configurations.
Reviewed Changes
Copilot reviewed 8 out of 10 changed files in this pull request and generated 2 comments.
Show a summary per file
File | Description |
---|---|
pkg/resources/otel_conf_gen/pipeline/components/processor/transform_processor.go | Added an error mode field with a potential typo in the field name. |
pkg/resources/otel_conf_gen/pipeline/components/exporter/common.go | Added a new "blocking" option with updated queue settings. |
config/crd/bases/telemetry.kube-logging.dev_tenants.yaml | Revised errorMode descriptions and pipelines documentation with updated enums. |
config/crd/bases/telemetry.kube-logging.dev_outputs.yaml | Introduced additional client configuration options including encoding, cipher suites, and cookies. |
api/telemetry/v1alpha1/zz_generated.deepcopy.go | Updated deepcopy functions to use proper deep copy methods. |
api/telemetry/v1alpha1/tenant_types.go | Updated error mode validation annotations and descriptions for consistency. |
api/telemetry/v1alpha1/output_types.go | Added encoding field validation for OTLPHTTP. |
api/telemetry/v1alpha1/otlp_config.go | Enhanced HTTP client and TLS configurations, adding CompressionParams and CookiesConfig. |
Files not reviewed (2)
- charts/telemetry-controller/crds/telemetry.kube-logging.dev_outputs.yaml: Language not supported
- charts/telemetry-controller/crds/telemetry.kube-logging.dev_tenants.yaml: Language not supported
Comments suppressed due to low confidence (1)
pkg/resources/otel_conf_gen/pipeline/components/processor/transform_processor.go:30
- The field name 'ErrorMde' appears to be a typo. It should be renamed to 'ErrorMode' for consistency.
ErrorMde components.ErrorMode `json:"error_mode,omitempty"`
4457c7e
to
2717e40
Compare
Signed-off-by: Bence Csati <[email protected]>
Signed-off-by: Bence Csati <[email protected]>
2717e40
to
5d62ffc
Compare
Fixes: #143