Skip to content

Commit 1371d3e

Browse files
authored
Merge pull request #2466 from FabianKramm/main
fix: variable resolving & image pull secret creation
2 parents 163507c + e7822ea commit 1371d3e

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

pkg/devspace/build/build.go

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -93,6 +93,9 @@ func (c *controller) Build(ctx devspacecontext.Context, images []string, options
9393

9494
for imageConfigName, imageConf := range conf.Images {
9595
imageName := imageConf.Image
96+
if len(images) > 0 && !stringutil.Contains(images, imageConfigName) {
97+
continue
98+
}
9699

97100
// Get image tags
98101
imageTags := []string{}

0 commit comments

Comments
 (0)