| 61 | } |
| 62 | |
| 63 | type manager struct { |
| 64 | actionConfig *action.Configuration |
| 65 | storageBackend *storage.Storage |
| 66 | kubeClient kube.Interface |
| 67 | |
| 68 | releaseName string |
| 69 | namespace string |
| 70 | |
| 71 | values map[string]any |
| 72 | status *types.HelmAppStatus |
| 73 | |
| 74 | isInstalled bool |
| 75 | isUpgradeRequired bool |
| 76 | deployedRelease *rpb.Release |
| 77 | chart *cpb.Chart |
| 78 | |
| 79 | dryRunOption string |
| 80 | } |
| 81 | |
| 82 | type InstallOption func(*action.Install) error |
| 83 | type UpgradeOption func(*action.Upgrade) error |
nothing calls this directly
no outgoing calls
no test coverage detected