1
0
Fork 0
mirror of https://github.com/portainer/portainer.git synced 2025-07-19 05:19:39 +02:00

feat(edge): kubernetes WaitForStatus support (#85)

This commit is contained in:
LP B 2024-11-11 14:02:20 +01:00 committed by GitHub
parent fd2b00bf3b
commit 6bc52dd39c
6 changed files with 34 additions and 8 deletions

View file

@ -14,7 +14,7 @@ type Deployer interface {
Pull(ctx context.Context, filePaths []string, options Options) error
Run(ctx context.Context, filePaths []string, serviceName string, options RunOptions) error
Validate(ctx context.Context, filePaths []string, options Options) error
WaitForStatus(ctx context.Context, name string, status Status) <-chan WaitResult
WaitForStatus(ctx context.Context, name string, status Status, stackFileLocation string) <-chan WaitResult
Config(ctx context.Context, filePaths []string, options Options) ([]byte, error)
}