Skip to content

Commit dbf0489

Browse files
committed
Merge remote-tracking branch 'origin/main' into k0s-1-29
2 parents df3daaf + daaafa6 commit dbf0489

File tree

86 files changed

+4999
-1379
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

86 files changed

+4999
-1379
lines changed

api/client/client.go

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,10 @@ type Client interface {
1919
GetLinuxAppConfigValues() (types.AppConfigValues, error)
2020
PatchLinuxAppConfigValues(types.AppConfigValues) (types.AppConfigValues, error)
2121
TemplateLinuxAppConfig(values types.AppConfigValues) (types.AppConfig, error)
22+
RunLinuxAppPreflights() (types.InstallAppPreflightsStatusResponse, error)
23+
GetLinuxAppPreflightsStatus() (types.InstallAppPreflightsStatusResponse, error)
24+
InstallLinuxApp() (types.AppInstall, error)
25+
GetLinuxAppInstallStatus() (types.AppInstall, error)
2226

2327
GetKubernetesInstallationConfig() (types.KubernetesInstallationConfig, error)
2428
ConfigureKubernetesInstallation(config types.KubernetesInstallationConfig) (types.Status, error)
@@ -28,6 +32,10 @@ type Client interface {
2832
GetKubernetesAppConfigValues() (types.AppConfigValues, error)
2933
PatchKubernetesAppConfigValues(types.AppConfigValues) (types.AppConfigValues, error)
3034
TemplateKubernetesAppConfig(values types.AppConfigValues) (types.AppConfig, error)
35+
RunKubernetesAppPreflights() (types.InstallAppPreflightsStatusResponse, error)
36+
GetKubernetesAppPreflightsStatus() (types.InstallAppPreflightsStatusResponse, error)
37+
InstallKubernetesApp() (types.AppInstall, error)
38+
GetKubernetesAppInstallStatus() (types.AppInstall, error)
3139
}
3240

3341
type client struct {

0 commit comments

Comments
 (0)