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

KUBESAW-43: Make LastProbeTime optional #1022

Merged
merged 3 commits into from
May 2, 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
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,10 @@ spec:
to another.
format: date-time
type: string
lastUpdatedTime:
description: Last time the condition was updated
format: date-time
type: string
message:
description: Human readable message indicating details about
last transition.
Expand All @@ -107,7 +111,6 @@ spec:
description: Type of cluster condition, Ready or Offline.
type: string
required:
- lastProbeTime
- status
- type
type: object
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -384,6 +384,10 @@ spec:
one status to another.
format: date-time
type: string
lastUpdatedTime:
description: Last time the condition was updated
format: date-time
type: string
message:
description: Human readable message indicating
details about last transition.
Expand All @@ -401,7 +405,6 @@ spec:
or Offline.
type: string
required:
- lastProbeTime
- status
- type
type: object
Expand Down
Loading