k3s/pkg/api/errors/etcd/etcd.go

88 lines
2.8 KiB
Go
Raw Normal View History

/*
Copyright 2014 The Kubernetes Authors All rights reserved.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package etcd
import (
2015-08-05 22:03:47 +00:00
"k8s.io/kubernetes/pkg/api/errors"
2015-11-23 19:32:50 +00:00
etcdutil "k8s.io/kubernetes/pkg/storage/etcd/util"
)
// InterpretListError converts a generic etcd error on a retrieval
// operation into the appropriate API error.
func InterpretListError(err error, kind string) error {
switch {
2015-11-23 19:32:50 +00:00
case etcdutil.IsEtcdNotFound(err):
return errors.NewNotFound(kind, "")
2015-11-23 19:32:50 +00:00
case etcdutil.IsEtcdUnreachable(err):
return errors.NewServerTimeout(kind, "list", 2) // TODO: make configurable or handled at a higher level
default:
return err
}
}
// InterpretGetError converts a generic etcd error on a retrieval
// operation into the appropriate API error.
func InterpretGetError(err error, kind, name string) error {
switch {
2015-11-23 19:32:50 +00:00
case etcdutil.IsEtcdNotFound(err):
return errors.NewNotFound(kind, name)
2015-11-23 19:32:50 +00:00
case etcdutil.IsEtcdUnreachable(err):
return errors.NewServerTimeout(kind, "get", 2) // TODO: make configurable or handled at a higher level
2015-06-23 01:19:18 +00:00
default:
return err
}
}
// InterpretCreateError converts a generic etcd error on a create
// operation into the appropriate API error.
func InterpretCreateError(err error, kind, name string) error {
switch {
2015-11-23 19:32:50 +00:00
case etcdutil.IsEtcdNodeExist(err):
return errors.NewAlreadyExists(kind, name)
2015-11-23 19:32:50 +00:00
case etcdutil.IsEtcdUnreachable(err):
return errors.NewServerTimeout(kind, "create", 2) // TODO: make configurable or handled at a higher level
2015-06-23 01:19:18 +00:00
default:
return err
}
}
2015-02-05 08:05:36 +00:00
// InterpretUpdateError converts a generic etcd error on a update
// operation into the appropriate API error.
func InterpretUpdateError(err error, kind, name string) error {
switch {
2015-11-23 19:32:50 +00:00
case etcdutil.IsEtcdTestFailed(err), etcdutil.IsEtcdNodeExist(err):
return errors.NewConflict(kind, name, err)
2015-11-23 19:32:50 +00:00
case etcdutil.IsEtcdUnreachable(err):
return errors.NewServerTimeout(kind, "update", 2) // TODO: make configurable or handled at a higher level
2015-06-23 01:19:18 +00:00
default:
return err
}
}
2015-02-05 08:05:36 +00:00
// InterpretDeleteError converts a generic etcd error on a delete
// operation into the appropriate API error.
func InterpretDeleteError(err error, kind, name string) error {
switch {
2015-11-23 19:32:50 +00:00
case etcdutil.IsEtcdNotFound(err):
return errors.NewNotFound(kind, name)
2015-11-23 19:32:50 +00:00
case etcdutil.IsEtcdUnreachable(err):
return errors.NewServerTimeout(kind, "delete", 2) // TODO: make configurable or handled at a higher level
2015-06-23 01:19:18 +00:00
default:
return err
}
}