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

[Dashboard] Replace DashboardLastForceSyncTime with LastForceSyncTime #1411

Merged
merged 2 commits into from
Sep 12, 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 api/datadoghq/v1alpha1/datadogdashboard_types.go
Original file line number Diff line number Diff line change
Expand Up @@ -67,8 +67,8 @@ type DatadogDashboardStatus struct {
// CurrentHash tracks the hash of the current DatadogDashboardSpec to know
// if the Spec has changed and needs an update.
CurrentHash string `json:"currentHash,omitempty"`
// DashboardLastForceSyncTime is the last time the API dashboard was last force synced with the Datadogdashboard resource
LastForceSyncTime *metav1.Time `json:"dashboardLastForceSyncTime,omitempty"`
// LastForceSyncTime is the last time the API dashboard was last force synced with the DatadogDashboard resource
LastForceSyncTime *metav1.Time `json:"lastForceSyncTime,omitempty"`
}

type DatadogDashboardSyncStatus string
Expand Down
4 changes: 2 additions & 2 deletions api/datadoghq/v1alpha1/zz_generated.openapi.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions config/crd/bases/v1/datadoghq.com_datadogdashboards.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -243,13 +243,13 @@ spec:
CurrentHash tracks the hash of the current DatadogDashboardSpec to know
if the Spec has changed and needs an update.
type: string
dashboardLastForceSyncTime:
description: DashboardLastForceSyncTime is the last time the API dashboard was last force synced with the Datadogdashboard resource
format: date-time
type: string
id:
description: ID is the dashboard ID generated in Datadog.
type: string
lastForceSyncTime:
description: LastForceSyncTime is the last time the API dashboard was last force synced with the DatadogDashboard resource
format: date-time
type: string
syncStatus:
description: SyncStatus shows the health of syncing the dashboard state to Datadog.
type: string
Expand Down
Loading