Documentation ¶
Index ¶
- Variables
- func AddCacheFlagsToCmd(cmd *cobra.Command, opts ...func(client *redis.Client)) func() (*Cache, error)
- type Cache
- func (c *Cache) DeleteManifests(revision string, appSrc *appv1.ApplicationSource, namespace string, ...) error
- func (c *Cache) GetAppDetails(revision string, appSrc *appv1.ApplicationSource, ...) error
- func (c *Cache) GetManifests(revision string, appSrc *appv1.ApplicationSource, namespace string, ...) error
- func (c *Cache) GetRevisionMetadata(repoURL, revision string) (*appv1.RevisionMetadata, error)
- func (c *Cache) ListApps(repoUrl, revision string) (map[string]string, error)
- func (c *Cache) SetAppDetails(revision string, appSrc *appv1.ApplicationSource, ...) error
- func (c *Cache) SetApps(repoUrl, revision string, apps map[string]string) error
- func (c *Cache) SetManifests(revision string, appSrc *appv1.ApplicationSource, namespace string, ...) error
- func (c *Cache) SetRevisionMetadata(repoURL, revision string, item *appv1.RevisionMetadata) error
- type CachedManifestResponse
Constants ¶
This section is empty.
Variables ¶
View Source
var ErrCacheMiss = cacheutil.ErrCacheMiss
Functions ¶
Types ¶
type Cache ¶
type Cache struct {
// contains filtered or unexported fields
}
func (*Cache) DeleteManifests ¶ added in v1.8.0
func (*Cache) GetAppDetails ¶
func (c *Cache) GetAppDetails(revision string, appSrc *appv1.ApplicationSource, res *apiclient.RepoAppDetailsResponse) error
func (*Cache) GetManifests ¶
func (c *Cache) GetManifests(revision string, appSrc *appv1.ApplicationSource, namespace string, appLabelKey string, appLabelValue string, res *CachedManifestResponse) error
func (*Cache) GetRevisionMetadata ¶
func (c *Cache) GetRevisionMetadata(repoURL, revision string) (*appv1.RevisionMetadata, error)
func (*Cache) SetAppDetails ¶
func (c *Cache) SetAppDetails(revision string, appSrc *appv1.ApplicationSource, res *apiclient.RepoAppDetailsResponse) error
func (*Cache) SetManifests ¶
func (c *Cache) SetManifests(revision string, appSrc *appv1.ApplicationSource, namespace string, appLabelKey string, appLabelValue string, res *CachedManifestResponse) error
func (*Cache) SetRevisionMetadata ¶
func (c *Cache) SetRevisionMetadata(repoURL, revision string, item *appv1.RevisionMetadata) error
type CachedManifestResponse ¶ added in v1.8.0
type CachedManifestResponse struct { CacheEntryHash string `json:"cacheEntryHash"` ManifestResponse *apiclient.ManifestResponse `json:"manifestResponse"` MostRecentError string `json:"mostRecentError"` FirstFailureTimestamp int64 `json:"firstFailureTimestamp"` NumberOfConsecutiveFailures int `json:"numberOfConsecutiveFailures"` NumberOfCachedResponsesReturned int `json:"numberOfCachedResponsesReturned"` }
CachedManifestResponse represents a cached result of a previous manifest generation operation, including the caching of a manifest generation error, plus additional information on previous failures
Click to show internal directories.
Click to hide internal directories.