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

This commit is contained in:
LP B
2024-11-13 04:30:08 +01:00
committed by GitHub
parent 2e9e459aa3
commit 2baae7072f
4 changed files with 7 additions and 8 deletions
+1 -1
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)
}