mirror of
https://github.com/helm/helm.git
synced 2026-02-03 20:39:45 -05:00
Linting is specific to the chart versions. A v2 and v3 chart will lint differently. To accomplish this, packages like engine need to be able to handle different chart versions. This was accomplished by some changes: 1. The introduction of a Charter interface for charts 2. The ChartAccessor which is able to accept a chart and then provide access to its data via an interface. There is an interface, factory, and implementation for each version of chart. 3. Common packages were moved to a common and util packages. Due to some package loops, there are 2 packages which may get some consolidation in the future. The new interfaces provide the foundation to move the actions and cmd packages to be able to handle multiple apiVersions of charts. Signed-off-by: Matt Farina <matt.farina@suse.com>
70 lines
2.3 KiB
Go
70 lines
2.3 KiB
Go
/*
|
|
Copyright The Helm Authors.
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
*/
|
|
|
|
package util
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"helm.sh/helm/v4/pkg/chart"
|
|
"helm.sh/helm/v4/pkg/chart/common"
|
|
)
|
|
|
|
// ToRenderValues composes the struct from the data coming from the Releases, Charts and Values files
|
|
//
|
|
// This takes both ReleaseOptions and Capabilities to merge into the render values.
|
|
func ToRenderValues(chrt chart.Charter, chrtVals map[string]interface{}, options common.ReleaseOptions, caps *common.Capabilities) (common.Values, error) {
|
|
return ToRenderValuesWithSchemaValidation(chrt, chrtVals, options, caps, false)
|
|
}
|
|
|
|
// ToRenderValuesWithSchemaValidation composes the struct from the data coming from the Releases, Charts and Values files
|
|
//
|
|
// This takes both ReleaseOptions and Capabilities to merge into the render values.
|
|
func ToRenderValuesWithSchemaValidation(chrt chart.Charter, chrtVals map[string]interface{}, options common.ReleaseOptions, caps *common.Capabilities, skipSchemaValidation bool) (common.Values, error) {
|
|
if caps == nil {
|
|
caps = common.DefaultCapabilities
|
|
}
|
|
accessor, err := chart.NewAccessor(chrt)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
top := map[string]interface{}{
|
|
"Chart": accessor.MetadataAsMap(),
|
|
"Capabilities": caps,
|
|
"Release": map[string]interface{}{
|
|
"Name": options.Name,
|
|
"Namespace": options.Namespace,
|
|
"IsUpgrade": options.IsUpgrade,
|
|
"IsInstall": options.IsInstall,
|
|
"Revision": options.Revision,
|
|
"Service": "Helm",
|
|
},
|
|
}
|
|
|
|
vals, err := CoalesceValues(chrt, chrtVals)
|
|
if err != nil {
|
|
return common.Values(top), err
|
|
}
|
|
|
|
if !skipSchemaValidation {
|
|
if err := ValidateAgainstSchema(chrt, vals); err != nil {
|
|
return top, fmt.Errorf("values don't meet the specifications of the schema(s) in the following chart(s):\n%w", err)
|
|
}
|
|
}
|
|
|
|
top["Values"] = vals
|
|
return top, nil
|
|
}
|