-
Notifications
You must be signed in to change notification settings - Fork 452
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
Make sure OTLP exporter can report data to OTLP ingress/route without additional configuration #1981
Make sure OTLP exporter can report data to OTLP ingress/route without additional configuration #1981
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
# One of 'breaking', 'deprecation', 'new_component', 'enhancement', 'bug_fix' | ||
change_type: breaking | ||
|
||
# The name of the component, or a single word describing the area of concern, (e.g. operator, target allocator, github action) | ||
component: operator | ||
|
||
# A brief description of the change. Surround your text with quotes ("") if it needs to start with a backtick (`). | ||
note: Make sure OTLP export can report data to OTLP ingress/route without additional configuration | ||
|
||
# One or more tracking issues related to the change | ||
issues: [1967] | ||
|
||
# (Optional) One or more lines of additional information to render under the primary note. | ||
# These lines will be padded with 2 spaces and then inserted directly into the document. | ||
# Use pipe (|) for multiline entries. | ||
subtext: | | ||
The ingress can be configured to create a single host with multiple paths or | ||
multiple hosts with subdomains (one per receiver port). | ||
The path from OpenShift route was removed. | ||
The port names are truncate to 15 characters. Users with custom receivers | ||
which create ports with longer name might need to update their configuration. |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -48,9 +48,15 @@ const ( | |
// SEE: OpenTelemetryCollector.spec.ports[index]. | ||
type Ingress struct { | ||
// Type default value is: "" | ||
// Supported types are: ingress | ||
// Supported types are: ingress, route | ||
Type IngressType `json:"type,omitempty"` | ||
|
||
// RuleType defines how Ingress exposes collector receivers. | ||
// IngressRuleTypePath ("path") exposes each receiver port on a unique path on single domain defined in Hostname. | ||
// IngressRuleTypeSubdomain ("subdomain") exposes each receiver port on a unique subdomain of Hostname. | ||
// Default is IngressRuleTypePath ("path"). | ||
RuleType IngressRuleType `json:"ruleType,omitempty"` | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. better naming ideas are appreciated :) There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. What about There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Actually, it might be better to keep the name aligned with the upstream ingress settings. It seems that users don't like that operators re-invent existing concepts #1987 |
||
|
||
// Hostname by which the ingress proxy can be reached. | ||
// +optional | ||
Hostname string `json:"hostname,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.
#1980 increased size of CRD to a point that no additional fields can be added. The CI was failing on
This can be solved by removing/trimming the CRD description texts. Similar to jaegertracing/jaeger-operator#932
docs: