You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Based on #3269 and #3345 , the Helm Operator start using the verb Upgrade instead of Update.
Is there a plan to global refactor/rename from Update to Upgrade for all the relevant code under the operator-sdk/pkg/helm/ package tree?
Question
What did you do?
There are a lot of mentions of Update instead of Upgrade currently under operator-sdk/pkg/helm/ package.
For example, log entries log.Info("Updated release", "force", force), function name IsUpdateRequired etc etc.
What did you expect to see?
All the relevant Update references rename to Upgrade for example:
type UpdateOption func(*action.Upgrade) error
to
type UpgradeOption func(*action.Upgrade) error
What did you see instead? Under which circumstances?
I see Update instead of Upgrade being used.
Type of question
Based on #3269 and #3345 , the Helm Operator start using the verb
Upgrade
instead ofUpdate
.Is there a plan to global refactor/rename from
Update
toUpgrade
for all the relevant code under theoperator-sdk/pkg/helm/
package tree?Question
What did you do?
There are a lot of mentions of
Update
instead ofUpgrade
currently underoperator-sdk/pkg/helm/
package.For example, log entries
log.Info("Updated release", "force", force)
, function nameIsUpdateRequired
etc etc.What did you expect to see?
All the relevant
Update
references rename toUpgrade
for example:to
What did you see instead? Under which circumstances?
I see Update instead of Upgrade being used.
Environment
master branch
Not relevant
Not relevant
FYI @camilamacedo86
The text was updated successfully, but these errors were encountered: