Documentation ¶
Index ¶
- type ApplicationInstallerLogger
- func (a ApplicationInstallerLogger) Apply(ctx context.Context, log *zap.SugaredLogger, ...) (util.StatusUpdater, error)
- func (a ApplicationInstallerLogger) Delete(ctx context.Context, log *zap.SugaredLogger, ...) (util.StatusUpdater, error)
- func (a ApplicationInstallerLogger) DownloadSource(ctx context.Context, log *zap.SugaredLogger, ...) (string, error)
- func (a ApplicationInstallerLogger) GetAppCache() string
- func (a ApplicationInstallerLogger) IsStuck(ctx context.Context, log *zap.SugaredLogger, ...) (bool, error)
- func (a ApplicationInstallerLogger) Rollback(ctx context.Context, log *zap.SugaredLogger, ...) error
- type ApplicationInstallerRecorder
- func (a *ApplicationInstallerRecorder) Apply(ctx context.Context, log *zap.SugaredLogger, ...) (util.StatusUpdater, error)
- func (a *ApplicationInstallerRecorder) Delete(ctx context.Context, log *zap.SugaredLogger, ...) (util.StatusUpdater, error)
- func (a *ApplicationInstallerRecorder) DownloadSource(ctx context.Context, log *zap.SugaredLogger, ...) (string, error)
- func (a *ApplicationInstallerRecorder) GetAppCache() string
- func (a *ApplicationInstallerRecorder) IsStuck(ctx context.Context, log *zap.SugaredLogger, ...) (bool, error)
- func (a *ApplicationInstallerRecorder) Rollback(ctx context.Context, log *zap.SugaredLogger, ...) error
- type CustomApplicationInstaller
- func (c CustomApplicationInstaller) Apply(ctx context.Context, log *zap.SugaredLogger, ...) (util.StatusUpdater, error)
- func (c CustomApplicationInstaller) Delete(ctx context.Context, log *zap.SugaredLogger, ...) (util.StatusUpdater, error)
- func (c CustomApplicationInstaller) DownloadSource(ctx context.Context, log *zap.SugaredLogger, ...) (string, error)
- func (c CustomApplicationInstaller) GetAppCache() string
- func (c CustomApplicationInstaller) IsStuck(ctx context.Context, log *zap.SugaredLogger, ...) (bool, error)
- func (c CustomApplicationInstaller) Rollback(ctx context.Context, log *zap.SugaredLogger, ...) error
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type ApplicationInstallerLogger ¶
type ApplicationInstallerLogger struct { }
ApplicationInstallerLogger is a fake ApplicationInstaller that just logs actions. it's used for the development of the controller.
func (ApplicationInstallerLogger) Apply ¶
func (a ApplicationInstallerLogger) Apply(ctx context.Context, log *zap.SugaredLogger, seedClient ctrlruntimeclient.Client, userClient ctrlruntimeclient.Client, appDefinition *appskubermaticv1.ApplicationDefinition, applicationInstallation *appskubermaticv1.ApplicationInstallation, appSourcePath string) (util.StatusUpdater, error)
func (ApplicationInstallerLogger) Delete ¶
func (a ApplicationInstallerLogger) Delete(ctx context.Context, log *zap.SugaredLogger, seedClient ctrlruntimeclient.Client, userClient ctrlruntimeclient.Client, applicationInstallation *appskubermaticv1.ApplicationInstallation) (util.StatusUpdater, error)
func (ApplicationInstallerLogger) DownloadSource ¶ added in v2.25.0
func (a ApplicationInstallerLogger) DownloadSource(ctx context.Context, log *zap.SugaredLogger, seedClient ctrlruntimeclient.Client, applicationInstallation *appskubermaticv1.ApplicationInstallation, downloadDest string) (string, error)
func (ApplicationInstallerLogger) GetAppCache ¶
func (a ApplicationInstallerLogger) GetAppCache() string
func (ApplicationInstallerLogger) IsStuck ¶ added in v2.24.9
func (a ApplicationInstallerLogger) IsStuck(ctx context.Context, log *zap.SugaredLogger, seedClient ctrlruntimeclient.Client, userClient ctrlruntimeclient.Client, applicationInstallation *appskubermaticv1.ApplicationInstallation) (bool, error)
func (ApplicationInstallerLogger) Rollback ¶ added in v2.24.9
func (a ApplicationInstallerLogger) Rollback(ctx context.Context, log *zap.SugaredLogger, seedClient ctrlruntimeclient.Client, userClient ctrlruntimeclient.Client, applicationInstallation *appskubermaticv1.ApplicationInstallation) error
type ApplicationInstallerRecorder ¶
type ApplicationInstallerRecorder struct { // DownloadEvents stores the call to download function. Key is the name of the applicationInstallation. DownloadEvents sync.Map // ApplyEvents stores the call to apply function. Key is the name of the applicationInstallation. ApplyEvents sync.Map // DeleteEvents stores the call to delete function. Key is the name of the applicationInstallation. DeleteEvents sync.Map }
ApplicationInstallerRecorder is a fake ApplicationInstaller that records calls to apply and delete for testing assertions.
func (*ApplicationInstallerRecorder) Apply ¶
func (a *ApplicationInstallerRecorder) Apply(ctx context.Context, log *zap.SugaredLogger, seedClient ctrlruntimeclient.Client, userClient ctrlruntimeclient.Client, appDefinition *appskubermaticv1.ApplicationDefinition, applicationInstallation *appskubermaticv1.ApplicationInstallation, appSourcePath string) (util.StatusUpdater, error)
func (*ApplicationInstallerRecorder) Delete ¶
func (a *ApplicationInstallerRecorder) Delete(ctx context.Context, log *zap.SugaredLogger, seedClient ctrlruntimeclient.Client, userClient ctrlruntimeclient.Client, applicationInstallation *appskubermaticv1.ApplicationInstallation) (util.StatusUpdater, error)
func (*ApplicationInstallerRecorder) DownloadSource ¶ added in v2.25.0
func (a *ApplicationInstallerRecorder) DownloadSource(ctx context.Context, log *zap.SugaredLogger, seedClient ctrlruntimeclient.Client, applicationInstallation *appskubermaticv1.ApplicationInstallation, downloadDest string) (string, error)
func (*ApplicationInstallerRecorder) GetAppCache ¶
func (a *ApplicationInstallerRecorder) GetAppCache() string
func (*ApplicationInstallerRecorder) IsStuck ¶ added in v2.24.9
func (a *ApplicationInstallerRecorder) IsStuck(ctx context.Context, log *zap.SugaredLogger, seedClient ctrlruntimeclient.Client, userClient ctrlruntimeclient.Client, applicationInstallation *appskubermaticv1.ApplicationInstallation) (bool, error)
func (*ApplicationInstallerRecorder) Rollback ¶ added in v2.24.9
func (a *ApplicationInstallerRecorder) Rollback(ctx context.Context, log *zap.SugaredLogger, seedClient ctrlruntimeclient.Client, userClient ctrlruntimeclient.Client, applicationInstallation *appskubermaticv1.ApplicationInstallation) error
type CustomApplicationInstaller ¶ added in v2.22.0
type CustomApplicationInstaller struct { GetAppCacheFunc func() string DownloadSourceFunc func(ctx context.Context, log *zap.SugaredLogger, seedClient ctrlruntimeclient.Client, applicationInstallation *appskubermaticv1.ApplicationInstallation, downloadDest string) (string, error) ApplyFunc func(ctx context.Context, log *zap.SugaredLogger, seedClient ctrlruntimeclient.Client, userClient ctrlruntimeclient.Client, appDefinition *appskubermaticv1.ApplicationDefinition, applicationInstallation *appskubermaticv1.ApplicationInstallation, appSourcePath string) (util.StatusUpdater, error) DeleteFunc func(ctx context.Context, log *zap.SugaredLogger, seedClient ctrlruntimeclient.Client, userClient ctrlruntimeclient.Client, applicationInstallation *appskubermaticv1.ApplicationInstallation) (util.StatusUpdater, error) }
CustomApplicationInstaller is an applicationInstaller in which every function can be independently mocked. If a function is not mocked, then default values are returned.
func (CustomApplicationInstaller) Apply ¶ added in v2.22.0
func (c CustomApplicationInstaller) Apply(ctx context.Context, log *zap.SugaredLogger, seedClient ctrlruntimeclient.Client, userClient ctrlruntimeclient.Client, appDefinition *appskubermaticv1.ApplicationDefinition, applicationInstallation *appskubermaticv1.ApplicationInstallation, appSourcePath string) (util.StatusUpdater, error)
func (CustomApplicationInstaller) Delete ¶ added in v2.22.0
func (c CustomApplicationInstaller) Delete(ctx context.Context, log *zap.SugaredLogger, seedClient ctrlruntimeclient.Client, userClient ctrlruntimeclient.Client, applicationInstallation *appskubermaticv1.ApplicationInstallation) (util.StatusUpdater, error)
func (CustomApplicationInstaller) DownloadSource ¶ added in v2.25.0
func (c CustomApplicationInstaller) DownloadSource(ctx context.Context, log *zap.SugaredLogger, seedClient ctrlruntimeclient.Client, applicationInstallation *appskubermaticv1.ApplicationInstallation, downloadDest string) (string, error)
func (CustomApplicationInstaller) GetAppCache ¶ added in v2.22.0
func (c CustomApplicationInstaller) GetAppCache() string
func (CustomApplicationInstaller) IsStuck ¶ added in v2.24.9
func (c CustomApplicationInstaller) IsStuck(ctx context.Context, log *zap.SugaredLogger, seedClient ctrlruntimeclient.Client, userClient ctrlruntimeclient.Client, applicationInstallation *appskubermaticv1.ApplicationInstallation) (bool, error)
func (CustomApplicationInstaller) Rollback ¶ added in v2.24.9
func (c CustomApplicationInstaller) Rollback(ctx context.Context, log *zap.SugaredLogger, seedClient ctrlruntimeclient.Client, userClient ctrlruntimeclient.Client, applicationInstallation *appskubermaticv1.ApplicationInstallation) error
Click to show internal directories.
Click to hide internal directories.