129 lines
3.2 KiB
Go
129 lines
3.2 KiB
Go
package app
|
|
|
|
import (
|
|
"helm.sh/helm/v3/pkg/chart"
|
|
|
|
"github.com/helmfile/helmfile/pkg/helmexec"
|
|
)
|
|
|
|
type noCallHelmExec struct {
|
|
}
|
|
|
|
type versionOnlyHelmExec struct {
|
|
*noCallHelmExec
|
|
isHelm3 bool
|
|
}
|
|
|
|
func (helm *versionOnlyHelmExec) IsHelm3() bool {
|
|
return helm.isHelm3
|
|
}
|
|
|
|
func (helm *noCallHelmExec) doPanic() {
|
|
panic("unexpected call to helm")
|
|
}
|
|
|
|
func (helm *noCallHelmExec) TemplateRelease(name, chart string, flags ...string) error {
|
|
helm.doPanic()
|
|
return nil
|
|
}
|
|
func (helm *noCallHelmExec) ChartPull(chart string, path string, flags ...string) error {
|
|
helm.doPanic()
|
|
return nil
|
|
}
|
|
func (helm *noCallHelmExec) ChartExport(chart string, path string, flags ...string) error {
|
|
helm.doPanic()
|
|
return nil
|
|
}
|
|
func (helm *noCallHelmExec) UpdateDeps(chart string) error {
|
|
helm.doPanic()
|
|
return nil
|
|
}
|
|
|
|
func (helm *noCallHelmExec) BuildDeps(name, chart string, flags ...string) error {
|
|
helm.doPanic()
|
|
return nil
|
|
}
|
|
|
|
func (helm *noCallHelmExec) SetExtraArgs(args ...string) {
|
|
helm.doPanic()
|
|
}
|
|
func (helm *noCallHelmExec) SetHelmBinary(bin string) {
|
|
helm.doPanic()
|
|
}
|
|
func (helm *noCallHelmExec) SetEnableLiveOutput(enableLiveOutput bool) {
|
|
helm.doPanic()
|
|
}
|
|
func (helm *noCallHelmExec) SetDisableForceUpdate(forceUpdate bool) {
|
|
helm.doPanic()
|
|
}
|
|
|
|
func (helm *noCallHelmExec) AddRepo(name, repository, cafile, certfile, keyfile, username, password string, managed string, passCredentials string, skipTLSVerify string) error {
|
|
helm.doPanic()
|
|
return nil
|
|
}
|
|
func (helm *noCallHelmExec) UpdateRepo() error {
|
|
helm.doPanic()
|
|
return nil
|
|
}
|
|
func (helm *noCallHelmExec) RegistryLogin(name string, username string, password string) error {
|
|
helm.doPanic()
|
|
return nil
|
|
}
|
|
func (helm *noCallHelmExec) SyncRelease(context helmexec.HelmContext, name, chart string, flags ...string) error {
|
|
helm.doPanic()
|
|
return nil
|
|
}
|
|
func (helm *noCallHelmExec) DiffRelease(context helmexec.HelmContext, name, chart string, suppressDiff bool, flags ...string) error {
|
|
helm.doPanic()
|
|
return nil
|
|
}
|
|
func (helm *noCallHelmExec) ReleaseStatus(context helmexec.HelmContext, release string, flags ...string) error {
|
|
helm.doPanic()
|
|
return nil
|
|
}
|
|
func (helm *noCallHelmExec) DeleteRelease(context helmexec.HelmContext, name string, flags ...string) error {
|
|
helm.doPanic()
|
|
return nil
|
|
}
|
|
|
|
func (helm *noCallHelmExec) List(context helmexec.HelmContext, filter string, flags ...string) (string, error) {
|
|
helm.doPanic()
|
|
return "", nil
|
|
}
|
|
|
|
func (helm *noCallHelmExec) DecryptSecret(context helmexec.HelmContext, name string, flags ...string) (string, error) {
|
|
helm.doPanic()
|
|
return "", nil
|
|
}
|
|
func (helm *noCallHelmExec) TestRelease(context helmexec.HelmContext, name string, flags ...string) error {
|
|
helm.doPanic()
|
|
return nil
|
|
}
|
|
func (helm *noCallHelmExec) Fetch(chart string, flags ...string) error {
|
|
helm.doPanic()
|
|
return nil
|
|
}
|
|
func (helm *noCallHelmExec) Lint(name, chart string, flags ...string) error {
|
|
helm.doPanic()
|
|
return nil
|
|
}
|
|
func (helm *noCallHelmExec) IsHelm3() bool {
|
|
helm.doPanic()
|
|
return false
|
|
}
|
|
|
|
func (helm *noCallHelmExec) GetVersion() helmexec.Version {
|
|
helm.doPanic()
|
|
return helmexec.Version{}
|
|
}
|
|
|
|
func (helm *noCallHelmExec) IsVersionAtLeast(versionStr string) bool {
|
|
helm.doPanic()
|
|
return false
|
|
}
|
|
|
|
func (helm *noCallHelmExec) ShowChart(chartPath string) (chart.Metadata, error) {
|
|
helm.doPanic()
|
|
return chart.Metadata{}, nil
|
|
}
|