Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

V0.8.5 set #201

Open
wants to merge 12 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
ParseInto
jianwen.gao committed Sep 13, 2022
commit db8b24aa6de2c41de95c673a3610d6e515d22630
2 changes: 1 addition & 1 deletion client.go
Original file line number Diff line number Diff line change
@@ -349,7 +349,7 @@ func (c *HelmClient) upgrade(ctx context.Context, spec *ChartSpec) (*release.Rel
// User specified a value via --set-string
for _, value := range spec.Sets {
if err := strvals.ParseInto(value, values); err != nil {
return nil, errors.New("failed parsing --set-string data")
return nil, fmt.Errorf("failed parsing --set-string data error:%v", err)
}
}