mirror of
https://github.com/grafana/grafana.git
synced 2025-08-01 14:32:09 +08:00

* SecretsManager: rename keeper + securevalues rest file * SecretsManager: add rest of xkube helper methods * SecretsManager: add domain errors to contracts * SecretsManager: copy over Keeper reststorage from feature branch * SecretsManager: copy over SecureValue reststorage from feature branch --------- Co-authored-by: PoorlyDefinedBehaviour <brunotj2015@hotmail.com> Co-authored-by: Dana Axinte <53751979+dana-axinte@users.noreply.github.com> Co-authored-by: Michael Mandrus <michael.mandrus@grafana.com>
10 lines
245 B
Go
10 lines
245 B
Go
package xkube
|
|
|
|
import "k8s.io/apimachinery/pkg/util/validation/field"
|
|
|
|
// ErrorLister is an interface compatible with errors that also returns a list of Kubernetes field errors.
|
|
type ErrorLister interface {
|
|
error
|
|
ErrorList() field.ErrorList
|
|
}
|