Skip to content

Commit 16af2ff

Browse files
tkashemk8s-publishing-bot
authored andcommitted
implement unsafe deletion, and wire it
- implement unsafe deletion, and wire it - aggregate corrupt object error(s) from the storage LIST operation - extend storage error: a) add a new type ErrCodeCorruptObj to represent a corrupt object: b) add a new member 'InnerErr error' to StorageError to hold the inner error - add API status error Kubernetes-commit: 5d4b4a160dc551dc8979012eeabea1a098945603
1 parent 6ff8305 commit 16af2ff

File tree

2 files changed

+23
-0
lines changed

2 files changed

+23
-0
lines changed

pkg/api/errors/errors.go

+7
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,7 @@ var knownReasons = map[metav1.StatusReason]struct{}{
5454
metav1.StatusReasonGone: {},
5555
metav1.StatusReasonInvalid: {},
5656
metav1.StatusReasonServerTimeout: {},
57+
metav1.StatusReasonStoreReadError: {},
5758
metav1.StatusReasonTimeout: {},
5859
metav1.StatusReasonTooManyRequests: {},
5960
metav1.StatusReasonBadRequest: {},
@@ -775,6 +776,12 @@ func IsUnexpectedObjectError(err error) bool {
775776
return err != nil && (ok || errors.As(err, &uoe))
776777
}
777778

779+
// IsStoreReadError determines if err is due to either failure to transform the
780+
// data from the storage, or failure to decode the object appropriately.
781+
func IsStoreReadError(err error) bool {
782+
return ReasonForError(err) == metav1.StatusReasonStoreReadError
783+
}
784+
778785
// SuggestsClientDelay returns true if this error suggests a client delay as well as the
779786
// suggested seconds to wait, or false if the error does not imply a wait. It does not
780787
// address whether the error *should* be retried, since some errors (like a 3xx) may

pkg/apis/meta/v1/types.go

+16
Original file line numberDiff line numberDiff line change
@@ -931,6 +931,22 @@ const (
931931
// Status code 500
932932
StatusReasonServerTimeout StatusReason = "ServerTimeout"
933933

934+
// StatusReasonStoreReadError means that the server encountered an error while
935+
// retrieving resources from the backend object store.
936+
// This may be due to backend database error, or because processing of the read
937+
// resource failed.
938+
// Details:
939+
// "kind" string - the kind attribute of the resource being acted on.
940+
// "name" string - the prefix where the reading error(s) occurred
941+
// "causes" []StatusCause
942+
// - (optional):
943+
// - "type" CauseType - CauseTypeUnexpectedServerResponse
944+
// - "message" string - the error message from the store backend
945+
// - "field" string - the full path with the key of the resource that failed reading
946+
//
947+
// Status code 500
948+
StatusReasonStoreReadError StatusReason = "StorageReadError"
949+
934950
// StatusReasonTimeout means that the request could not be completed within the given time.
935951
// Clients can get this response only when they specified a timeout param in the request,
936952
// or if the server cannot complete the operation within a reasonable amount of time.

0 commit comments

Comments
 (0)