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

feat: add KeptnAppCreationRequestTimeout field to KeptnConfig API #735

Merged
merged 1 commit into from
Feb 6, 2023
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: 4 additions & 0 deletions operator/apis/options/v1alpha1/keptnconfig_types.go
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,10 @@ type KeptnConfigSpec struct {

// OTelCollectorUrl can be used to set the Open Telemetry collector that the operator should use
OTelCollectorUrl string `json:"OTelCollectorUrl,omitempty"`
// KeptnAppCreationRequestTimeout is used to set the interval in which automatic app discovery
// searches for workload to put into the same auto-generated KeptnApp
// +kubebuilder:default:=30
KeptnAppCreationRequestTimeout uint `json:"keptnAppCreationRequestTimeout,omitempty"`
}

// KeptnConfigStatus defines the observed state of KeptnConfig
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,12 @@ spec:
description: OTelCollectorUrl can be used to set the Open Telemetry
collector that the operator should use
type: string
keptnAppCreationRequestTimeout:
default: 30
description: KeptnAppCreationRequestTimeout is used to set the interval
in which automatic app discovery searches for workload to put into
the same auto-generated KeptnApp
type: integer
type: object
status:
description: KeptnConfigStatus defines the observed state of KeptnConfig
Expand Down