Skip to content
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: remove match-once since it's deprecated #140

Merged
merged 1 commit into from
Jan 30, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 0 additions & 5 deletions api/telemetry/v1alpha1/tenant_types.go
Original file line number Diff line number Diff line change
Expand Up @@ -61,11 +61,6 @@ type RouteConfig struct {
// ErrorMode specifies how errors are handled while processing a statement
// vaid options are: ignore, silent, propagate; (default: propagate)
ErrorMode string `json:"errorMode,omitempty"`

// Determines whether the connector matches multiple statements or not.
// If enabled, the payload will be routed to the first pipeline in the table whose routing condition is met.
// May only be false when used with resource context.
MatchOnce bool `json:"matchOnce,omitempty"`
}

// Configuration for persistence, will be used to generate
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -146,12 +146,6 @@ spec:
- silent
- propagate
type: string
matchOnce:
description: |-
Determines whether the connector matches multiple statements or not.
If enabled, the payload will be routed to the first pipeline in the table whose routing condition is met.
May only be false when used with resource context.
type: boolean
type: object
selectFromAllNamespaces:
description: |-
Expand Down
6 changes: 0 additions & 6 deletions config/crd/bases/telemetry.kube-logging.dev_tenants.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -146,12 +146,6 @@ spec:
- silent
- propagate
type: string
matchOnce:
description: |-
Determines whether the connector matches multiple statements or not.
If enabled, the payload will be routed to the first pipeline in the table whose routing condition is met.
May only be false when used with resource context.
type: boolean
type: object
selectFromAllNamespaces:
description: |-
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@ type RoutingConnector struct {
Name string `json:"-"`
DefaultPipelines []string `json:"default_pipelines,omitempty"`
ErrorMode components.ErrorMode `json:"error_mode,omitempty"`
MatchOnce bool `json:"match_once,omitempty"`
Table []RoutingConnectorTableItem `json:"table"`
}

Expand All @@ -50,7 +49,6 @@ func newRoutingConnector(name string, tenantRouteConfig v1alpha1.RouteConfig) Ro
Name: name,
DefaultPipelines: tenantRouteConfig.DefaultPipelines,
ErrorMode: components.ErrorMode(tenantRouteConfig.ErrorMode),
MatchOnce: tenantRouteConfig.MatchOnce,
}
}

Expand Down
Loading