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

fix(edge/stacks): use default namespace when none is specified in manifest (#125)

This commit is contained in:
LP B 2024-11-13 04:30:16 +01:00 committed by GitHub
parent b2eb4388fd
commit 707fc91a32
4 changed files with 7 additions and 8 deletions

View file

@ -16,7 +16,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, stackFileLocation string) <-chan WaitResult
WaitForStatus(ctx context.Context, name string, status Status) <-chan WaitResult
Config(ctx context.Context, filePaths []string, options Options) ([]byte, error)
}