Merge pull request #4759 from jsoref/simplify-successfully-migrated-message

Simplify successfully migrated message
This commit is contained in:
jetstack-bot 2022-01-19 09:09:57 +00:00 committed by GitHub
commit eb0d4ad276
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -115,7 +115,7 @@ func (m *Migrator) Run(ctx context.Context, targetVersion string, names []string
return false, err
}
fmt.Fprintln(m.Out, "Successfully migrated all cert-manager resource types. It is now safe to proceed to upgrade to cert-manager v1.7.")
fmt.Fprintln(m.Out, "Successfully migrated all cert-manager resource types. It is now safe to upgrade to cert-manager v1.7.")
return true, nil
}