Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
fix(custom tags): --use-custom-tag with an image name not work properly
  • Loading branch information
alexey-igrychev committed Oct 18, 2021
1 parent 2d0d39a commit 89807af
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/deploy/helm/chart_extender/helpers/service_values.go
Expand Up @@ -88,7 +88,7 @@ func GetServiceValues(ctx context.Context, projectName string, repo string, imag
var image string

if opts.CustomTagFunc != nil {
tag = opts.CustomTagFunc(imageInfoGetter.GetName())
tag = opts.CustomTagFunc(imageInfoGetter.GetWerfImageName())
image = strings.Join([]string{repo, tag}, ":")
} else {
tag = imageInfoGetter.GetTag()
Expand Down

0 comments on commit 89807af

Please sign in to comment.