You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
helm/cmd/helm/chart_upload.go

116 lines
2.7 KiB

/*
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"
"os"
"regexp"
"strings"
"github.com/aokoli/goutils"
"github.com/codegangsta/cli"
"github.com/kubernetes/helm/pkg/chart"
"github.com/kubernetes/helm/pkg/format"
)
func uploadChart(c *cli.Context) error {
args := c.Args()
if len(args) < 1 {
format.Err("First argument, filename, is required. Try 'helm deploy --help'")
os.Exit(1)
}
cname := c.String("name")
fname := args[0]
if fname == "" {
return errors.New("A filename must be specified. For a tar archive, this is the name of the root template in the archive.")
}
_, err := doUpload(fname, cname, c)
return err
}
func doUpload(filename, cname string, cxt *cli.Context) (string, error) {
fi, err := os.Stat(filename)
if err != nil {
return "", err
}
if fi.IsDir() {
format.Info("Chart is directory")
c, err := chart.LoadDir(filename)
if err != nil {
return "", err
}
if cname == "" {
cname = genName(c.Chartfile().Name)
}
// TODO: Is it better to generate the file in temp dir like this, or
// just put it in the CWD?
//tdir, err := ioutil.TempDir("", "helm-")
//if err != nil {
//format.Warn("Could not create temporary directory. Using .")
//tdir = "."
//} else {
//defer os.RemoveAll(tdir)
//}
tdir := "."
tfile, err := chart.Save(c, tdir)
if err != nil {
return "", err
}
filename = tfile
} else if cname == "" {
n, _, e := parseTarName(filename)
if e != nil {
return "", e
}
cname = n
}
// TODO: Add a version build metadata on the chart.
if cxt.Bool("dry-run") {
format.Info("Prepared deploy %q using file %q", cname, filename)
return "", nil
}
c := NewClient(cxt)
return c.PostChart(filename, cname)
}
func genName(pname string) string {
s, _ := goutils.RandomAlphaNumeric(8)
return fmt.Sprintf("%s-%s", pname, s)
}
func parseTarName(name string) (string, string, error) {
tnregexp := regexp.MustCompile(chart.TarNameRegex)
if strings.HasSuffix(name, ".tgz") {
name = strings.TrimSuffix(name, ".tgz")
}
v := tnregexp.FindStringSubmatch(name)
if v == nil {
return name, "", fmt.Errorf("invalid name %s", name)
}
return v[1], v[2], nil
}