mirror of
https://github.com/goharbor/harbor.git
synced 2024-12-23 00:57:44 +01:00
Fix the issue of returning '* file not found' error
return default empty when file is not existing
This commit is contained in:
parent
bb380e6dbc
commit
2f0b706f84
@ -55,17 +55,26 @@ func (cho *ChartOperator) GetChartDetails(content []byte) (*ChartVersionDetails,
|
||||
//Parse the requirements of chart
|
||||
requirements, err := chartutil.LoadRequirements(chartData)
|
||||
if err != nil {
|
||||
//If no requirements.yaml, return empty dependency list
|
||||
if _, ok := err.(chartutil.ErrNoRequirementsFile); ok {
|
||||
requirements = &chartutil.Requirements{
|
||||
Dependencies: make([]*chartutil.Dependency, 0),
|
||||
}
|
||||
} else {
|
||||
return nil, err
|
||||
}
|
||||
}
|
||||
|
||||
var values map[string]interface{}
|
||||
files := make(map[string]string)
|
||||
//Parse values
|
||||
if chartData.Values != nil {
|
||||
values = parseRawValues([]byte(chartData.Values.GetRaw()))
|
||||
if len(values) > 0 {
|
||||
//Append values.yaml file
|
||||
files["values.yaml"] = chartData.Values.Raw
|
||||
}
|
||||
}
|
||||
|
||||
//Append other files like 'README.md'
|
||||
for _, v := range chartData.GetFiles() {
|
||||
|
Loading…
Reference in New Issue
Block a user