mirror of
https://github.com/helm/helm.git
synced 2026-04-07 01:56:35 -04:00
A few things are added here: 1. The cache is made to be more generic as a content based cache. It could be used for other things such as plugins 2. Flags were added to specify the content cache locaiton rather than rely on the repository cache. Keeping the 2 the same hid bugs and errors. 3. Tests were added and updated to ensure the cache is used and tested Signed-off-by: Matt Farina <matt.farina@suse.com>
98 lines
2.8 KiB
Go
98 lines
2.8 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 cmd
|
|
|
|
import (
|
|
"fmt"
|
|
"io"
|
|
"os"
|
|
"path/filepath"
|
|
|
|
"github.com/spf13/cobra"
|
|
"k8s.io/client-go/util/homedir"
|
|
|
|
"helm.sh/helm/v4/pkg/action"
|
|
"helm.sh/helm/v4/pkg/cmd/require"
|
|
"helm.sh/helm/v4/pkg/downloader"
|
|
"helm.sh/helm/v4/pkg/getter"
|
|
)
|
|
|
|
const dependencyBuildDesc = `
|
|
Build out the charts/ directory from the Chart.lock file.
|
|
|
|
Build is used to reconstruct a chart's dependencies to the state specified in
|
|
the lock file. This will not re-negotiate dependencies, as 'helm dependency update'
|
|
does.
|
|
|
|
If no lock file is found, 'helm dependency build' will mirror the behavior
|
|
of 'helm dependency update'.
|
|
`
|
|
|
|
func newDependencyBuildCmd(out io.Writer) *cobra.Command {
|
|
client := action.NewDependency()
|
|
|
|
cmd := &cobra.Command{
|
|
Use: "build CHART",
|
|
Short: "rebuild the charts/ directory based on the Chart.lock file",
|
|
Long: dependencyBuildDesc,
|
|
Args: require.MaximumNArgs(1),
|
|
RunE: func(_ *cobra.Command, args []string) error {
|
|
chartpath := "."
|
|
if len(args) > 0 {
|
|
chartpath = filepath.Clean(args[0])
|
|
}
|
|
registryClient, err := newRegistryClient(client.CertFile, client.KeyFile, client.CaFile,
|
|
client.InsecureSkipTLSverify, client.PlainHTTP, client.Username, client.Password)
|
|
if err != nil {
|
|
return fmt.Errorf("missing registry client: %w", err)
|
|
}
|
|
|
|
man := &downloader.Manager{
|
|
Out: out,
|
|
ChartPath: chartpath,
|
|
Keyring: client.Keyring,
|
|
SkipUpdate: client.SkipRefresh,
|
|
Getters: getter.All(settings),
|
|
RegistryClient: registryClient,
|
|
RepositoryConfig: settings.RepositoryConfig,
|
|
RepositoryCache: settings.RepositoryCache,
|
|
ContentCache: settings.ContentCache,
|
|
Debug: settings.Debug,
|
|
}
|
|
if client.Verify {
|
|
man.Verify = downloader.VerifyIfPossible
|
|
}
|
|
err = man.Build()
|
|
if e, ok := err.(downloader.ErrRepoNotFound); ok {
|
|
return fmt.Errorf("%s. Please add the missing repos via 'helm repo add'", e.Error())
|
|
}
|
|
return err
|
|
},
|
|
}
|
|
|
|
f := cmd.Flags()
|
|
addDependencySubcommandFlags(f, client)
|
|
|
|
return cmd
|
|
}
|
|
|
|
// defaultKeyring returns the expanded path to the default keyring.
|
|
func defaultKeyring() string {
|
|
if v, ok := os.LookupEnv("GNUPGHOME"); ok {
|
|
return filepath.Join(v, "pubring.gpg")
|
|
}
|
|
return filepath.Join(homedir.HomeDir(), ".gnupg", "pubring.gpg")
|
|
}
|