be more explicit about caching of download failures

This commit is contained in:
Yann Hamon 2020-05-31 01:09:05 +02:00
parent 30a6fe69b1
commit ef44c39ff2
2 changed files with 12 additions and 0 deletions

View file

@ -9,3 +9,7 @@ type Manifest struct {
type Registry interface {
DownloadSchema(resourceKind, resourceAPIVersion, k8sVersion string) (*gojsonschema.Schema, error)
}
type Retryable interface {
IsRetryable() bool
}