Skip to content

Commit

Permalink
🪹 empty initial values (#311)
Browse files Browse the repository at this point in the history
  • Loading branch information
petar-cvit authored Jun 5, 2024
1 parent adc3e75 commit 50bd041
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cyclops-ctrl/internal/template/helm.go
Original file line number Diff line number Diff line change
Expand Up @@ -272,7 +272,7 @@ func (r Repo) mapHelmChartInitialValues(files map[string][]byte) (map[interface{
}
}

var values map[interface{}]interface{}
values := make(map[interface{}]interface{})
if err := yaml.Unmarshal(valuesBytes, &values); err != nil {
return nil, err
}
Expand Down

0 comments on commit 50bd041

Please sign in to comment.