Skip to content

Commit

Permalink
Merge pull request #1763 from FabianKramm/main
Browse files Browse the repository at this point in the history
fix: vcluster start --set
  • Loading branch information
FabianKramm authored May 10, 2024
2 parents 17cb055 + 53b38e0 commit 47e3c06
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/config/parse.go
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ func applySetValues(rawConfig []byte, setValues []string) ([]byte, error) {

// merge set
for _, set := range setValues {
err = strvals.ParseIntoString(set, rawConfigMap)
err = strvals.ParseInto(set, rawConfigMap)
if err != nil {
return nil, fmt.Errorf("apply --set %s: %w", set, err)
}
Expand Down

0 comments on commit 47e3c06

Please sign in to comment.