Merge pull request #3 from robsonpeixoto/chart-in-local-path

Accept chart in a local path
This commit is contained in:
rob boll 2017-04-13 22:26:27 -04:00 committed by GitHub
commit 0f447d2cb2
1 changed files with 22 additions and 0 deletions

View File

@ -6,6 +6,8 @@ import (
"io/ioutil"
"os"
"os/exec"
"path/filepath"
"regexp"
"strings"
)
@ -46,7 +48,27 @@ func (helm *execer) UpdateRepo() error {
return err
}
func normalizeChart(chart string) (string, error) {
regex, err := regexp.Compile("^[.]?./")
if err != nil {
return "", err
}
if !regex.MatchString(chart) {
return chart, nil
}
wd, err := os.Getwd()
if err != nil {
return "", err
}
path := filepath.Join(wd, chart)
return path, nil
}
func (helm *execer) SyncChart(name, chart string, flags ...string) error {
chart, err := normalizeChart(chart)
if err != nil {
return err
}
out, err := helm.exec(append([]string{"upgrade", "--install", name, chart}, flags...)...)
if helm.writer != nil {
helm.writer.Write(out)