mirror of
https://github.com/yannh/kubeconform.git
synced 2026-02-11 22:19:25 +00:00
13 lines
229 B
Go
13 lines
229 B
Go
package registry
|
|
|
|
type Manifest struct {
|
|
Kind, Version string
|
|
}
|
|
|
|
type Registry interface {
|
|
DownloadSchema(resourceKind, resourceAPIVersion, k8sVersion string) ([]byte, error)
|
|
}
|
|
|
|
type Retryable interface {
|
|
IsRetryable() bool
|
|
}
|