mirror of
https://github.com/yannh/kubeconform.git
synced 2026-02-11 22:19:25 +00:00
15 lines
No EOL
284 B
Go
15 lines
No EOL
284 B
Go
package registry
|
|
|
|
import "github.com/xeipuuv/gojsonschema"
|
|
|
|
type Manifest struct {
|
|
Kind, Version string
|
|
}
|
|
|
|
type Registry interface {
|
|
DownloadSchema(resourceKind, resourceAPIVersion, k8sVersion string) (*gojsonschema.Schema, error)
|
|
}
|
|
|
|
type Retryable interface {
|
|
IsRetryable() bool
|
|
} |