Skip to content

Commit

Permalink
@ #1379 | Bug fix for Helm imageStrategy
Browse files Browse the repository at this point in the history
  • Loading branch information
hoatle committed May 11, 2019
1 parent 06d01b1 commit 5896a0d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/skaffold/deploy/helm.go
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ func (h *HelmDeployer) deployRelease(ctx context.Context, out io.Writer, r lates
if err != nil {
return nil, errors.Wrapf(err, "cannot parse the docker image reference %s", v.Tag)
}
imageRepositoryTag := fmt.Sprintf("%s.repository=%s,%s.tag=%s", k, dockerRef.BaseName, k, dockerRef.Tag)
imageRepositoryTag := fmt.Sprintf("%s.repository=%s,%s.tag=%s", k, dockerRef.BaseName, k, extractTag(v.Tag))
setOpts = append(setOpts, imageRepositoryTag)
} else {
setOpts = append(setOpts, fmt.Sprintf("%s=%s", k, v.Tag))
Expand Down

0 comments on commit 5896a0d

Please sign in to comment.