|
|
|
/*
|
|
|
|
Copyright 2016 The Kubernetes Authors All rights reserved.
|
|
|
|
|
|
|
|
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 main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"errors"
|
|
|
|
"fmt"
|
|
|
|
"io"
|
|
|
|
"sync"
|
|
|
|
|
|
|
|
"github.com/spf13/cobra"
|
|
|
|
|
|
|
|
"k8s.io/helm/pkg/getter"
|
|
|
|
"k8s.io/helm/pkg/helm/helmpath"
|
|
|
|
"k8s.io/helm/pkg/repo"
|
|
|
|
)
|
|
|
|
|
|
|
|
const updateDesc = `
|
|
|
|
Update gets the latest information about charts from the respective chart repositories.
|
|
|
|
Information is cached locally, where it is used by commands like 'helm search'.
|
|
|
|
|
|
|
|
'helm update' is the deprecated form of 'helm repo update'. It will be removed in
|
|
|
|
future releases.
|
|
|
|
`
|
|
|
|
|
|
|
|
var (
|
|
|
|
errNoRepositories = errors.New("no repositories found. You must add one before updating")
|
|
|
|
)
|
|
|
|
|
|
|
|
type repoUpdateCmd struct {
|
|
|
|
update func([]*repo.ChartRepository, io.Writer, helmpath.Home)
|
|
|
|
home helmpath.Home
|
|
|
|
out io.Writer
|
|
|
|
}
|
|
|
|
|
|
|
|
func newRepoUpdateCmd(out io.Writer) *cobra.Command {
|
|
|
|
u := &repoUpdateCmd{
|
|
|
|
out: out,
|
|
|
|
update: updateCharts,
|
|
|
|
}
|
|
|
|
cmd := &cobra.Command{
|
|
|
|
Use: "update",
|
|
|
|
Aliases: []string{"up"},
|
|
|
|
Short: "update information of available charts locally from chart repositories",
|
|
|
|
Long: updateDesc,
|
|
|
|
RunE: func(cmd *cobra.Command, args []string) error {
|
|
|
|
u.home = settings.Home
|
|
|
|
return u.run()
|
|
|
|
},
|
|
|
|
}
|
|
|
|
return cmd
|
|
|
|
}
|
|
|
|
|
|
|
|
func (u *repoUpdateCmd) run() error {
|
|
|
|
f, err := repo.LoadRepositoriesFile(u.home.RepositoryFile())
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(f.Repositories) == 0 {
|
|
|
|
return errNoRepositories
|
|
|
|
}
|
|
|
|
var repos []*repo.ChartRepository
|
|
|
|
for _, cfg := range f.Repositories {
|
|
|
|
r, err := repo.NewChartRepository(cfg, getter.All(settings))
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
repos = append(repos, r)
|
|
|
|
}
|
|
|
|
|
|
|
|
u.update(repos, u.out, u.home)
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func updateCharts(repos []*repo.ChartRepository, out io.Writer, home helmpath.Home) {
|
|
|
|
fmt.Fprintln(out, "Hang tight while we grab the latest from your chart repositories...")
|
|
|
|
var wg sync.WaitGroup
|
|
|
|
for _, re := range repos {
|
|
|
|
wg.Add(1)
|
|
|
|
go func(re *repo.ChartRepository) {
|
|
|
|
defer wg.Done()
|
|
|
|
if re.Config.Name == localRepository {
|
|
|
|
fmt.Fprintf(out, "...Skip %s chart repository\n", re.Config.Name)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
err := re.DownloadIndexFile(home.Cache())
|
|
|
|
if err != nil {
|
|
|
|
fmt.Fprintf(out, "...Unable to get an update from the %q chart repository (%s):\n\t%s\n", re.Config.Name, re.Config.URL, err)
|
|
|
|
} else {
|
|
|
|
fmt.Fprintf(out, "...Successfully got an update from the %q chart repository\n", re.Config.Name)
|
|
|
|
}
|
|
|
|
}(re)
|
|
|
|
}
|
|
|
|
wg.Wait()
|
|
|
|
fmt.Fprintln(out, "Update Complete. ⎈ Happy Helming!⎈ ")
|
|
|
|
}
|