Skip to content
This repository was archived by the owner on Oct 19, 2024. It is now read-only.

Commit a03eee5

Browse files
committed
fix: repo.GetAppDetails().Helm.GetParameterValueByName not get helm.values
1 parent 99bb3be commit a03eee5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

shared/argocd/service.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ func (svc *argoCDService) GetAppDetails(ctx context.Context, appSource *v1alpha1
136136
output := map[string]string{}
137137
var valuesMap map[interface{}]interface{}
138138
if err := json.Unmarshal([]byte(appSource.Helm.Values), valuesMap); err != nil {
139-
return nil, fmt.Errorf("failed to parse appSource.Helm.Values: %s", err)
139+
return nil, fmt.Errorf("failed to parse : %s, appSource.Helm.Values: %v", err, appSource.Helm.Values)
140140
}
141141
flatVals(valuesMap, output)
142142

0 commit comments

Comments
 (0)