mirror of
https://github.com/helm/helm.git
synced 2026-04-06 01:25:21 -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>
90 lines
2.8 KiB
Go
90 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"
|
|
"path/filepath"
|
|
|
|
"github.com/spf13/cobra"
|
|
|
|
"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 dependencyUpDesc = `
|
|
Update the on-disk dependencies to mirror Chart.yaml.
|
|
|
|
This command verifies that the required charts, as expressed in 'Chart.yaml',
|
|
are present in 'charts/' and are at an acceptable version. It will pull down
|
|
the latest charts that satisfy the dependencies, and clean up old dependencies.
|
|
|
|
On successful update, this will generate a lock file that can be used to
|
|
rebuild the dependencies to an exact version.
|
|
|
|
Dependencies are not required to be represented in 'Chart.yaml'. For that
|
|
reason, an update command will not remove charts unless they are (a) present
|
|
in the Chart.yaml file, but (b) at the wrong version.
|
|
`
|
|
|
|
// newDependencyUpdateCmd creates a new dependency update command.
|
|
func newDependencyUpdateCmd(_ *action.Configuration, out io.Writer) *cobra.Command {
|
|
client := action.NewDependency()
|
|
|
|
cmd := &cobra.Command{
|
|
Use: "update CHART",
|
|
Aliases: []string{"up"},
|
|
Short: "update charts/ based on the contents of Chart.yaml",
|
|
Long: dependencyUpDesc,
|
|
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.VerifyAlways
|
|
}
|
|
return man.Update()
|
|
},
|
|
}
|
|
|
|
f := cmd.Flags()
|
|
addDependencySubcommandFlags(f, client)
|
|
|
|
return cmd
|
|
}
|