MCPcopy Index your code
hub / github.com/helm/helm / LoadArchive

Function LoadArchive

internal/chart/v3/loader/archive.go:67–74  ·  view source on GitHub ↗

LoadArchive loads from a reader containing a compressed tar archive.

(in io.Reader)

Source from the content-addressed store, hash-verified

65
66// LoadArchive loads from a reader containing a compressed tar archive.
67func LoadArchive(in io.Reader) (*chart.Chart, error) {
68 files, err := archive.LoadArchiveFiles(in)
69 if err != nil {
70 return nil, err
71 }
72
73 return LoadFiles(files)
74}

Callers 2

LoadFileFunction · 0.70
LoadFilesFunction · 0.70

Calls 2

LoadArchiveFilesFunction · 0.92
LoadFilesFunction · 0.70

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…