Documentation ¶
Index ¶
- type AirgapStore
- type AppStatusStore
- type AppStore
- type BrandingStore
- type ClusterStore
- type DownstreamStore
- type EmbeddedStore
- type InstallationStore
- type KotsadmParamsStore
- type LicenseStore
- type Migrations
- type PreflightStore
- type PrometheusStore
- type RegistryStore
- type SessionStore
- type SnapshotStore
- type Store
- type SupportBundleStore
- type TaskStore
- type UserStore
- type VersionStore
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type AirgapStore ¶
type AirgapStore interface { GetPendingAirgapUploadApp() (*airgaptypes.PendingApp, error) GetAirgapInstallStatus(appID string) (*airgaptypes.InstallStatus, error) ResetAirgapInstallInProgress(appID string) error SetAppIsAirgap(appID string, isAirgap bool) error }
type AppStatusStore ¶
type AppStatusStore interface { GetAppStatus(appID string) (*appstatetypes.AppStatus, error) SetAppStatus(appID string, resourceStates appstatetypes.ResourceStates, updatedAt time.Time, sequence int64) error }
type AppStore ¶
type AppStore interface { AddAppToAllDownstreams(appID string) error SetAppInstallState(appID string, state string) error ListInstalledApps() ([]*apptypes.App, error) ListInstalledAppSlugs() ([]string, error) ListFailedApps() ([]*apptypes.App, error) GetAppIDFromSlug(slug string) (appID string, err error) GetApp(appID string) (*apptypes.App, error) GetAppFromSlug(slug string) (*apptypes.App, error) CreateApp(name string, upstreamURI string, licenseData string, isAirgapEnabled bool, skipImagePush bool, registryIsReadOnly bool) (*apptypes.App, error) ListDownstreamsForApp(appID string) ([]downstreamtypes.Downstream, error) ListAppsForDownstream(clusterID string) ([]*apptypes.App, error) GetDownstream(clusterID string) (*downstreamtypes.Downstream, error) IsGitOpsEnabledForApp(appID string) (bool, error) SetUpdateCheckerSpec(appID string, updateCheckerSpec string) error SetAutoDeploy(appID string, autoDeploy apptypes.AutoDeploy) error SetSnapshotTTL(appID string, snapshotTTL string) error SetSnapshotSchedule(appID string, snapshotSchedule string) error RemoveApp(appID string) error SetAppChannelChanged(appID string, channelChanged bool) error }
type BrandingStore ¶ added in v1.86.2
type ClusterStore ¶
type ClusterStore interface { ListClusters() ([]*downstreamtypes.Downstream, error) GetClusterIDFromSlug(slug string) (clusterID string, err error) GetClusterIDFromDeployToken(deployToken string) (clusterID string, err error) CreateNewCluster(userID string, isAllUsers bool, title string, token string) (clusterID string, err error) SetInstanceSnapshotTTL(clusterID string, snapshotTTL string) error SetInstanceSnapshotSchedule(clusterID string, snapshotSchedule string) error }
type DownstreamStore ¶
type DownstreamStore interface { GetCurrentDownstreamSequence(appID string, clusterID string) (int64, error) GetCurrentParentSequence(appID string, clusterID string) (int64, error) GetParentSequenceForSequence(appID string, clusterID string, sequence int64) (int64, error) GetPreviouslyDeployedSequence(appID string, clusterID string) (int64, error) MarkAsCurrentDownstreamVersion(appID string, sequence int64) error SetDownstreamVersionStatus(appID string, sequence int64, status types.DownstreamVersionStatus, statusInfo string) error GetDownstreamVersionStatus(appID string, sequence int64) (types.DownstreamVersionStatus, error) GetDownstreamVersionSource(appID string, sequence int64) (string, error) GetIgnoreRBACErrors(appID string, sequence int64) (bool, error) GetCurrentDownstreamVersion(appID string, clusterID string) (*downstreamtypes.DownstreamVersion, error) GetStatusForVersion(appID string, clusterID string, sequence int64) (types.DownstreamVersionStatus, error) // GetDownstreamVersions returns a sorted list of app releases without additional details. The sort order is determined by semver being enabled in the license. GetDownstreamVersions(appID string, clusterID string, downloadedOnly bool) (*downstreamtypes.DownstreamVersions, error) // Same as GetDownstreamVersions, but finds a cluster where app is deployed FindDownstreamVersions(appID string, downloadedOnly bool) (*downstreamtypes.DownstreamVersions, error) GetDownstreamVersionHistory(appID string, clusterID string, currentPage int, pageSize int, pinLatest bool, pinLatestDeployable bool) (*downstreamtypes.DownstreamVersionHistory, error) AddDownstreamVersionDetails(appID string, clusterID string, version *downstreamtypes.DownstreamVersion, checkIfDeployable bool) error AddDownstreamVersionsDetails(appID string, clusterID string, versions []*downstreamtypes.DownstreamVersion, checkIfDeployable bool) error // GetLatestDeployableDownstreamVersion returns the latest allowed version to upgrade to from the currently deployed version GetLatestDeployableDownstreamVersion(appID string, clusterID string) (latestDeployableVersion *downstreamtypes.DownstreamVersion, numOfSkippedVersions int, numOfRemainingVersions int, finalError error) IsAppVersionDeployable(appID string, sequence int64) (bool, string, error) GetDownstreamOutput(appID string, clusterID string, sequence int64) (*downstreamtypes.DownstreamOutput, error) IsDownstreamDeploySuccessful(appID string, clusterID string, sequence int64) (bool, error) UpdateDownstreamDeployStatus(appID string, clusterID string, sequence int64, isError bool, output downstreamtypes.DownstreamOutput) error DeleteDownstreamDeployStatus(appID string, clusterID string, sequence int64) error }
type EmbeddedStore ¶
type InstallationStore ¶
type InstallationStore interface {
GetPendingInstallationStatus() (*installationtypes.InstallStatus, error)
}
type KotsadmParamsStore ¶
type LicenseStore ¶
type LicenseStore interface { GetLatestLicenseForApp(appID string) (*kotsv1beta1.License, error) GetLicenseForAppVersion(appID string, sequence int64) (*kotsv1beta1.License, error) GetAllAppLicenses() ([]*kotsv1beta1.License, error) // originalLicenseData is the data received from the replicated API that was never marshalled locally so all fields are intact UpdateAppLicense(appID string, sequence int64, archiveDir string, newLicense *kotsv1beta1.License, originalLicenseData string, channelChanged bool, failOnVersionCreate bool, gitops gitopstypes.DownstreamGitOps, renderer rendertypes.Renderer) (int64, error) UpdateAppLicenseSyncNow(appID string) error }
type Migrations ¶
type Migrations interface {
RunMigrations()
}
type PreflightStore ¶
type PreflightStore interface { SetPreflightProgress(appID string, sequence int64, progress string) error GetPreflightProgress(appID string, sequence int64) (string, error) SetPreflightResults(appID string, sequence int64, results []byte) error GetPreflightResults(appID string, sequence int64) (*preflighttypes.PreflightResult, error) ResetPreflightResults(appID string, sequence int64) error SetIgnorePreflightPermissionErrors(appID string, sequence int64) error }
type PrometheusStore ¶
type RegistryStore ¶
type SessionStore ¶
type SessionStore interface { CreateSession(user *usertypes.User, issuedAt time.Time, expiresAt time.Time, roles []string) (*sessiontypes.Session, error) DeleteSession(sessionID string) error GetSession(sessionID string) (*sessiontypes.Session, error) UpdateSessionExpiresAt(sessionID string, expiresAt time.Time) error DeleteExpiredSessions() error }
type SnapshotStore ¶
type SnapshotStore interface { ListPendingScheduledSnapshots(appID string) ([]snapshottypes.ScheduledSnapshot, error) UpdateScheduledSnapshot(snapshotID string, backupName string) error DeletePendingScheduledSnapshots(appID string) error CreateScheduledSnapshot(snapshotID string, appID string, timestamp time.Time) error ListPendingScheduledInstanceSnapshots(clusterID string) ([]snapshottypes.ScheduledInstanceSnapshot, error) UpdateScheduledInstanceSnapshot(snapshotID string, backupName string) error DeletePendingScheduledInstanceSnapshots(clusterID string) error CreateScheduledInstanceSnapshot(snapshotID string, clusterID string, timestamp time.Time) error }
type Store ¶
type Store interface { Migrations RegistryStore SupportBundleStore PreflightStore PrometheusStore AirgapStore TaskStore SessionStore AppStatusStore AppStore DownstreamStore VersionStore LicenseStore UserStore ClusterStore SnapshotStore InstallationStore KotsadmParamsStore EmbeddedStore BrandingStore Init() error // this may need options WaitForReady(ctx context.Context) error IsNotFound(err error) bool }
type SupportBundleStore ¶
type SupportBundleStore interface { ListSupportBundles(appID string) ([]*supportbundletypes.SupportBundle, error) GetSupportBundle(bundleID string) (*supportbundletypes.SupportBundle, error) CreateSupportBundle(bundleID string, appID string, archivePath string, marshalledTree []byte) (*supportbundletypes.SupportBundle, error) GetSupportBundleArchive(bundleID string) (archivePath string, err error) GetSupportBundleAnalysis(bundleID string) (*supportbundletypes.SupportBundleAnalysis, error) SetSupportBundleAnalysis(bundleID string, insights []byte) error GetRedactions(bundleID string) (troubleshootredact.RedactionList, error) SetRedactions(bundleID string, redacts troubleshootredact.RedactionList) error CreateInProgressSupportBundle(supportBundle *supportbundletypes.SupportBundle) error UpdateSupportBundle(bundle *supportbundletypes.SupportBundle) error UploadSupportBundle(bundleID string, archivePath string, marshalledTree []byte) error }
type VersionStore ¶
type VersionStore interface { IsIdentityServiceSupportedForVersion(appID string, sequence int64) (bool, error) IsRollbackSupportedForVersion(appID string, sequence int64) (bool, error) IsSnapshotsSupportedForVersion(a *apptypes.App, sequence int64, renderer rendertypes.Renderer) (bool, error) GetTargetKotsVersionForVersion(appID string, sequence int64) (string, error) CreateAppVersionArchive(appID string, sequence int64, archivePath string) error GetAppVersionArchive(appID string, sequence int64, dstPath string) error GetAppVersionBaseSequence(appID string, versionLabel string) (int64, error) GetAppVersionBaseArchive(appID string, versionLabel string) (string, int64, error) CreatePendingDownloadAppVersion(appID string, update upstreamtypes.Update, kotsApplication *kotsv1beta1.Application, license *kotsv1beta1.License) (int64, error) UpdateAppVersion(appID string, sequence int64, baseSequence *int64, filesInDir string, source string, skipPreflights bool, gitops gitopstypes.DownstreamGitOps, renderer rendertypes.Renderer) error CreateAppVersion(appID string, baseSequence *int64, filesInDir string, source string, skipPreflights bool, gitops gitopstypes.DownstreamGitOps, renderer rendertypes.Renderer) (int64, error) GetAppVersion(appID string, sequence int64) (*versiontypes.AppVersion, error) GetLatestAppSequence(appID string, downloadedOnly bool) (int64, error) UpdateNextAppVersionDiffSummary(appID string, baseSequence int64) error UpdateAppVersionInstallationSpec(appID string, sequence int64, spec kotsv1beta1.Installation) error GetNextAppSequence(appID string) (int64, error) GetCurrentUpdateCursor(appID string, channelID string) (string, string, bool, error) HasStrictPreflights(appID string, sequence int64) (bool, error) }
Click to show internal directories.
Click to hide internal directories.