diff --git a/cmd/helm/upgrade.go b/cmd/helm/upgrade.go index 6b12cca70..03de21f4d 100644 --- a/cmd/helm/upgrade.go +++ b/cmd/helm/upgrade.go @@ -100,7 +100,8 @@ func newUpgradeCmd(cfg *action.Configuration, out io.Writer) *cobra.Command { instClient.Namespace = client.Namespace instClient.Atomic = client.Atomic - _, err := runInstall(args, instClient, valueOpts, out) + rel, err := runInstall(args, instClient, valueOpts, out) + action.PrintRelease(out, rel) return err } }