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

Commit 99bb3be

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

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
@@ -134,7 +134,7 @@ func (svc *argoCDService) GetAppDetails(ctx context.Context, appSource *v1alpha1
134134

135135
if appSource.Helm.Values != "" {
136136
output := map[string]string{}
137-
var valuesMap map[string]interface{}
137+
var valuesMap map[interface{}]interface{}
138138
if err := json.Unmarshal([]byte(appSource.Helm.Values), valuesMap); err != nil {
139139
return nil, fmt.Errorf("failed to parse appSource.Helm.Values: %s", err)
140140
}

0 commit comments

Comments
 (0)