MCPcopy
hub / github.com/helm/helm / Storage

Struct Storage

pkg/storage/storage.go:41–51  ·  view source on GitHub ↗

Storage represents a storage engine for a Release.

Source from the content-addressed store, hash-verified

39
40// Storage represents a storage engine for a Release.
41type Storage struct {
42 driver.Driver
43
44 // MaxHistory specifies the maximum number of historical releases that will
45 // be retained, including the most recent release. Values of 0 or less are
46 // ignored (meaning no limits are imposed).
47 MaxHistory int
48
49 // Embed a LogHolder to provide logger functionality
50 logging.LogHolder
51}
52
53// Get retrieves the release from storage. An error is returned
54// if the storage driver failed to fetch the release, or the

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected