File tree 2 files changed +23
-0
lines changed
2 files changed +23
-0
lines changed Original file line number Diff line number Diff line change @@ -54,6 +54,7 @@ var knownReasons = map[metav1.StatusReason]struct{}{
54
54
metav1 .StatusReasonGone : {},
55
55
metav1 .StatusReasonInvalid : {},
56
56
metav1 .StatusReasonServerTimeout : {},
57
+ metav1 .StatusReasonStoreReadError : {},
57
58
metav1 .StatusReasonTimeout : {},
58
59
metav1 .StatusReasonTooManyRequests : {},
59
60
metav1 .StatusReasonBadRequest : {},
@@ -775,6 +776,12 @@ func IsUnexpectedObjectError(err error) bool {
775
776
return err != nil && (ok || errors .As (err , & uoe ))
776
777
}
777
778
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
+
778
785
// SuggestsClientDelay returns true if this error suggests a client delay as well as the
779
786
// suggested seconds to wait, or false if the error does not imply a wait. It does not
780
787
// address whether the error *should* be retried, since some errors (like a 3xx) may
Original file line number Diff line number Diff line change @@ -931,6 +931,22 @@ const (
931
931
// Status code 500
932
932
StatusReasonServerTimeout StatusReason = "ServerTimeout"
933
933
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
+
934
950
// StatusReasonTimeout means that the request could not be completed within the given time.
935
951
// Clients can get this response only when they specified a timeout param in the request,
936
952
// or if the server cannot complete the operation within a reasonable amount of time.
You can’t perform that action at this time.
0 commit comments