| 22 | } |
| 23 | |
| 24 | type Helm struct { |
| 25 | Charts []string |
| 26 | Repo []string |
| 27 | Releases []Release |
| 28 | Deleted []Release |
| 29 | Lists map[ListKey]string |
| 30 | Diffs map[DiffKey]error |
| 31 | Diffed []Release |
| 32 | FailOnUnexpectedDiff bool |
| 33 | FailOnUnexpectedList bool |
| 34 | Version *semver.Version |
| 35 | |
| 36 | UpdateDepsCallbacks map[string]func(string) error |
| 37 | |
| 38 | DiffMutex *sync.Mutex |
| 39 | ChartsMutex *sync.Mutex |
| 40 | ReleasesMutex *sync.Mutex |
| 41 | |
| 42 | Helm3 bool |
| 43 | } |
| 44 | |
| 45 | type Release struct { |
| 46 | Name string |
nothing calls this directly
no outgoing calls
no test coverage detected