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

fix(origin detection): grammar for OriginDetectionUnified setting #1194

Merged
merged 1 commit into from
May 21, 2024
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
4 changes: 2 additions & 2 deletions apis/datadoghq/v2alpha1/datadogagent_types.go
Original file line number Diff line number Diff line change
Expand Up @@ -719,7 +719,7 @@ type Endpoint struct {
Credentials *DatadogCredentials `json:"credentials,omitempty"`
}

// OriginDetectionUnified define the origin detection unified mechanism behavior.
// OriginDetectionUnified defines the origin detection unified mechanism behavior.
type OriginDetectionUnified struct {
// Enabled enables unified mechanism for origin detection.
// Default: false
Expand Down Expand Up @@ -805,7 +805,7 @@ type GlobalConfig struct {
// +listType=set
Tags []string `json:"tags,omitempty"`

// OriginDetectionUnified define the origin detection unified mechanism behavior.
// OriginDetectionUnified defines the origin detection unified mechanism behavior.
// +optional
OriginDetectionUnified *OriginDetectionUnified `json:"originDetectionUnified,omitempty"`

Expand Down
2 changes: 1 addition & 1 deletion config/crd/bases/v1/datadoghq.com_datadogagents.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8810,7 +8810,7 @@ spec:
description: 'Provide a mapping of Kubernetes Node Labels to Datadog Tags. <KUBERNETES_NODE_LABEL>: <DATADOG_TAG_KEY>'
type: object
originDetectionUnified:
description: OriginDetectionUnified define the origin detection unified mechanism behavior.
description: OriginDetectionUnified defines the origin detection unified mechanism behavior.
properties:
enabled:
description: 'Enabled enables unified mechanism for origin detection. Default: false'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16362,7 +16362,7 @@ spec:
description: 'Provide a mapping of Kubernetes Node Labels to Datadog Tags. <KUBERNETES_NODE_LABEL>: <DATADOG_TAG_KEY>'
type: object
originDetectionUnified:
description: OriginDetectionUnified define the origin detection unified mechanism behavior.
description: OriginDetectionUnified defines the origin detection unified mechanism behavior.
properties:
enabled:
description: 'Enabled enables unified mechanism for origin detection. Default: false'
Expand Down
Loading