├── .gitignore ├── plugin.yaml ├── README.md ├── go.mod ├── Makefile ├── LICENSE ├── main.go ├── install-binary.sh └── go.sum /.gitignore: -------------------------------------------------------------------------------- 1 | vendor 2 | _dist 3 | helm-push 4 | helm-push.exe -------------------------------------------------------------------------------- /plugin.yaml: -------------------------------------------------------------------------------- 1 | name: "push" 2 | version: "0.1.0" 3 | usage: "Integrate Chart package push to Coding Artifacts with Helm" 4 | description: |- 5 | This plugin provides Chart package push to Coding Artifacts to Helm. 6 | ignoreFlags: false 7 | useTunnel: false 8 | command: "$HELM_PLUGIN_DIR/helm-push" 9 | hooks: 10 | install: "$HELM_PLUGIN_DIR/install-binary.sh" 11 | update: "$HELM_PLUGIN_DIR/install-binary.sh" -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # helm-push 2 | 3 | 4 | **已弃用**!已迁移至[新仓库](https://coding-public.coding.net/public/helm-push/helm-push/git)。 5 | 6 | 7 | 用于推送 Chart 包到 Coding 制品库的 Helm 插件。 8 | 9 | ## 安装 10 | 11 | ```shell 12 | $ helm plugin install https://github.com/Coding/helm-push 13 | ``` 14 | 15 | ## 使用 16 | 17 | 添加 Chart 仓库 18 | ```shell 19 | helm repo add --username --password https://-helm.pkg.coding.net// 20 | ``` 21 | 22 | 推送 Chart 包 23 | ```shell 24 | helm push mychart.tgz 25 | ``` 26 | 27 | 推送 Chart 目录 28 | ```shell 29 | helm push . 30 | ``` 31 | 32 | -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- 1 | module github.com/Coding/helm-push 2 | 3 | go 1.12 4 | 5 | require ( 6 | github.com/Masterminds/semver v1.4.2 // indirect 7 | github.com/chartmuseum/helm-push v0.7.1 8 | github.com/cyphar/filepath-securejoin v0.2.2 // indirect 9 | github.com/ghodss/yaml v1.0.0 // indirect 10 | github.com/gobwas/glob v0.2.3 // indirect 11 | github.com/golang/protobuf v1.3.2 // indirect 12 | github.com/pkg/errors v0.8.1 // indirect 13 | github.com/spf13/cobra v0.0.5 14 | k8s.io/apimachinery v0.0.0-20190719140911-bfcf53abc9f8 // indirect 15 | k8s.io/client-go v11.0.0+incompatible // indirect 16 | k8s.io/helm v2.14.2+incompatible // indirect 17 | ) 18 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- 1 | VERSION := $(shell sed -n -e 's/version:[ "]*\([^"]*\).*/\1/p' plugin.yaml) 2 | DIST := $(CURDIR)/_dist 3 | LDFLAGS := "-X main.version=${VERSION}" 4 | 5 | all: build 6 | 7 | build: 8 | CGO_ENABLED=0 go build -mod=vendor -ldflags $(LDFLAGS) -o helm-push ./main.go 9 | 10 | dist: 11 | mkdir -p $(DIST) 12 | CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -mod=vendor -ldflags $(LDFLAGS) -o helm-push ./main.go 13 | tar -zcf $(DIST)/helm-push_$(VERSION)_linux-amd64.tgz helm-push 14 | CGO_ENABLED=0 GOOS=darwin GOARCH=amd64 go build -mod=vendor -ldflags $(LDFLAGS) -o helm-push ./main.go 15 | tar -zcf $(DIST)/helm-push_$(VERSION)_macos-amd64.tgz helm-push 16 | CGO_ENABLED=0 GOOS=windows GOARCH=amd64 go build -mod=vendor -ldflags $(LDFLAGS) -o helm-push.exe ./main.go 17 | tar -zcf $(DIST)/helm-push_$(VERSION)_windows-amd64.tgz helm-push.exe 18 | 19 | bootstrap: 20 | go mod download 21 | go mod vendor -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2014-2019 Coding(https://coding.net/) 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy of 6 | this software and associated documentation files (the "Software"), to deal in 7 | the Software without restriction, including without limitation the rights to 8 | use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of 9 | the Software, and to permit persons to whom the Software is furnished to do so, 10 | subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS 17 | FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR 18 | COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER 19 | IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN 20 | CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- 1 | package main 2 | 3 | import ( 4 | "errors" 5 | "fmt" 6 | "io/ioutil" 7 | "net/http" 8 | "os" 9 | "strconv" 10 | 11 | "github.com/chartmuseum/helm-push/pkg/helm" 12 | "github.com/spf13/cobra" 13 | ) 14 | 15 | var version = "" 16 | 17 | func main() { 18 | cmd := &cobra.Command{ 19 | Use: "helm push [chart archive/directory] [repository name]", 20 | Short: "push chart package to Coding artifact", 21 | Long: "push chart package to Coding artifact", 22 | SilenceUsage: false, 23 | Args: cobra.MinimumNArgs(2), 24 | RunE: func(cmd *cobra.Command, args []string) error { 25 | if len(args) != 2 { 26 | return errors.New("chart archive/directory and repository name required") 27 | } 28 | return push(args[0], args[1]) 29 | }, 30 | } 31 | 32 | flags := cmd.Flags() 33 | flags.Parse(os.Args[1:]) 34 | 35 | if err := cmd.Execute(); err != nil { 36 | os.Exit(1) 37 | } 38 | } 39 | 40 | func push(chartName, repository string) error { 41 | chart, err := helm.GetChartByName(chartName) 42 | if err != nil { 43 | return err 44 | } 45 | 46 | repo, err := helm.GetRepoByName(repository) 47 | if err != nil { 48 | return err 49 | } 50 | 51 | tmp, err := ioutil.TempDir("", "helm-push-") 52 | if err != nil { 53 | return err 54 | } 55 | defer os.RemoveAll(tmp) 56 | 57 | chartPackagePath, err := helm.CreateChartPackage(chart, tmp) 58 | if err != nil { 59 | return err 60 | } 61 | 62 | chartArchiveFile, err := os.Open(chartPackagePath) 63 | if err != nil { 64 | return err 65 | } 66 | defer chartArchiveFile.Close() 67 | 68 | fileInfo, err := chartArchiveFile.Stat() 69 | if err != nil { 70 | return err 71 | } 72 | 73 | req, err := http.NewRequest("POST", repo.URL, chartArchiveFile) 74 | if err != nil { 75 | return err 76 | } 77 | 78 | req.SetBasicAuth(repo.Username, repo.Password) 79 | req.Header.Set("User-Agent", fmt.Sprintf("helm-push/%s", version)) 80 | req.Header.Set("Content-Length", strconv.FormatInt(fileInfo.Size(), 10)) 81 | 82 | fmt.Printf("pushing chart '%s' to repository '%s' ...\n", chart.Metadata.Name, repo.URL) 83 | 84 | resp, err := (&http.Client{}).Do(req) 85 | if err != nil { 86 | return err 87 | } 88 | defer resp.Body.Close() 89 | 90 | body, err := ioutil.ReadAll(resp.Body) 91 | if err != nil { 92 | return err 93 | } 94 | 95 | if resp.StatusCode >= 400 { 96 | return fmt.Errorf( 97 | "fail to push chart '%s' to repository '%s': repository returns error %s: %s", 98 | chart.Metadata.Name, 99 | repo.URL, 100 | http.StatusText(resp.StatusCode), 101 | string(body), 102 | ) 103 | } 104 | 105 | fmt.Printf("finished pushing chart '%s' to repository '%s'\n", chart.Metadata.Name, repo.URL) 106 | return nil 107 | } 108 | -------------------------------------------------------------------------------- /install-binary.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | PROJECT_NAME="helm-push" 4 | PROJECT_GH="Coding/$PROJECT_NAME" 5 | 6 | : ${HELM_PLUGIN_PATH:="$(helm home)/plugins/helm-push"} 7 | 8 | # Convert the HELM_PLUGIN_PATH to unix if cygpath is 9 | # available. This is the case when using MSYS2 or Cygwin 10 | # on Windows where helm returns a Windows path but we 11 | # need a Unix path 12 | if type cygpath > /dev/null; then 13 | HELM_PLUGIN_PATH=$(cygpath -u $HELM_PLUGIN_PATH) 14 | fi 15 | 16 | if [[ $SKIP_BIN_INSTALL == "1" ]]; then 17 | echo "Skipping binary install" 18 | exit 19 | fi 20 | 21 | # initArch discovers the architecture for this system. 22 | initArch() { 23 | ARCH=$(uname -m) 24 | case $ARCH in 25 | armv5*) ARCH="armv5";; 26 | armv6*) ARCH="armv6";; 27 | armv7*) ARCH="armv7";; 28 | aarch64) ARCH="arm64";; 29 | x86) ARCH="386";; 30 | x86_64) ARCH="amd64";; 31 | i686) ARCH="386";; 32 | i386) ARCH="386";; 33 | esac 34 | } 35 | 36 | # initOS discovers the operating system for this system. 37 | initOS() { 38 | OS=$(echo `uname`|tr '[:upper:]' '[:lower:]') 39 | 40 | case "$OS" in 41 | # Msys support 42 | msys*) OS='windows';; 43 | # Minimalist GNU for Windows 44 | mingw*) OS='windows';; 45 | darwin) OS='macos';; 46 | esac 47 | } 48 | 49 | # verifySupported checks that the os/arch combination is supported for 50 | # binary builds. 51 | verifySupported() { 52 | local supported="linux-amd64\nmacos-amd64\nwindows-amd64" 53 | if ! echo "${supported}" | grep -q "${OS}-${ARCH}"; then 54 | echo "No prebuild binary for ${OS}-${ARCH}." 55 | exit 1 56 | fi 57 | 58 | if ! type "curl" > /dev/null && ! type "wget" > /dev/null; then 59 | echo "Either curl or wget is required" 60 | exit 1 61 | fi 62 | } 63 | 64 | # getDownloadURL checks the latest available version. 65 | getDownloadURL() { 66 | # Use the GitHub API to find the latest version for this project. 67 | local latest_url="https://api.github.com/repos/$PROJECT_GH/releases/latest" 68 | if type "curl" > /dev/null; then 69 | DOWNLOAD_URL=$(curl -s $latest_url | grep $OS | awk '/\"browser_download_url\":/{gsub( /[,\"]/,"", $2); print $2}') 70 | elif type "wget" > /dev/null; then 71 | DOWNLOAD_URL=$(wget -q -O - $latest_url | awk '/\"browser_download_url\":/{gsub( /[,\"]/,"", $2); print $2}') 72 | fi 73 | } 74 | 75 | # downloadFile downloads the latest binary package and also the checksum 76 | # for that binary. 77 | downloadFile() { 78 | PLUGIN_TMP_FILE="/tmp/${PROJECT_NAME}.tgz" 79 | echo "Downloading $DOWNLOAD_URL" 80 | if type "curl" > /dev/null; then 81 | curl -L "$DOWNLOAD_URL" -o "$PLUGIN_TMP_FILE" 82 | elif type "wget" > /dev/null; then 83 | wget -q -O "$PLUGIN_TMP_FILE" "$DOWNLOAD_URL" 84 | fi 85 | } 86 | 87 | # installFile verifies the SHA256 for the file, then unpacks and 88 | # installs it. 89 | installFile() { 90 | HELM_TMP="/tmp/$PROJECT_NAME" 91 | mkdir -p "$HELM_TMP" 92 | tar xf "$PLUGIN_TMP_FILE" -C "$HELM_TMP" 93 | HELM_TMP_BIN="$HELM_TMP/helm-push" 94 | echo "Preparing to install into ${HELM_PLUGIN_PATH}" 95 | # Use * to also copy the file withe the exe suffix on Windows 96 | cp "$HELM_TMP_BIN"* "$HELM_PLUGIN_PATH" 97 | } 98 | 99 | # fail_trap is executed if an error occurs. 100 | fail_trap() { 101 | result=$? 102 | if [ "$result" != "0" ]; then 103 | echo "Failed to install $PROJECT_NAME" 104 | echo "\tFor support, go to https://github.com/kubernetes/helm." 105 | fi 106 | exit $result 107 | } 108 | 109 | # testVersion tests the installed client to make sure it is working. 110 | testVersion() { 111 | set +e 112 | echo "$PROJECT_NAME installed into $HELM_PLUGIN_PATH/$PROJECT_NAME" 113 | # To avoid to keep track of the Windows suffix, 114 | # call the plugin assuming it is in the PATH 115 | PATH=$PATH:$HELM_PLUGIN_PATH 116 | helm-push -h 117 | set -e 118 | } 119 | 120 | # Execution 121 | 122 | #Stop execution on any error 123 | trap "fail_trap" EXIT 124 | set -e 125 | initArch 126 | initOS 127 | verifySupported 128 | getDownloadURL 129 | downloadFile 130 | installFile 131 | testVersion -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- 1 | github.com/BurntSushi/toml v0.3.1 h1:WXkYYl6Yr3qBf1K79EBnL4mak0OimBfB0XUf9Vl28OQ= 2 | github.com/BurntSushi/toml v0.3.1/go.mod h1:xHWCNGjB5oqiDr8zfno3MHue2Ht5sIBksp03qcyfWMU= 3 | github.com/Masterminds/semver v1.4.2 h1:WBLTQ37jOCzSLtXNdoo8bNM8876KhNqOKvrlGITgsTc= 4 | github.com/Masterminds/semver v1.4.2/go.mod h1:MB6lktGJrhw8PrUyiEoblNEGEQ+RzHPF078ddwwvV3Y= 5 | github.com/NYTimes/gziphandler v0.0.0-20170623195520-56545f4a5d46/go.mod h1:3wb06e3pkSAbeQ52E9H9iFoQsEEwGN64994WTCIhntQ= 6 | github.com/PuerkitoBio/purell v1.0.0/go.mod h1:c11w/QuzBsJSee3cPx9rAFu61PvFxuPbtSwDGJws/X0= 7 | github.com/PuerkitoBio/urlesc v0.0.0-20160726150825-5bd2802263f2/go.mod h1:uGdkoq3SwY9Y+13GIhn11/XLaGBb4BfwItxLd5jeuXE= 8 | github.com/armon/consul-api v0.0.0-20180202201655-eb2c6b5be1b6/go.mod h1:grANhF5doyWs3UAsr3K4I6qtAmlQcZDesFNEHPZAzj8= 9 | github.com/chartmuseum/helm-push v0.7.1 h1:PZpyEaKiZqexbXvFidmEC8UDl9+pRTtDv1cEBXOeZwE= 10 | github.com/chartmuseum/helm-push v0.7.1/go.mod h1:5ZGZxWAS+Nke4rc3c82laATE0n4vaTVKLFij1VnrTU4= 11 | github.com/coreos/etcd v3.3.10+incompatible/go.mod h1:uF7uidLiAD3TWHmW31ZFd/JWoc32PjwdhPthX9715RE= 12 | github.com/coreos/go-etcd v2.0.0+incompatible/go.mod h1:Jez6KQU2B/sWsbdaef3ED8NzMklzPG4d5KIOhIy30Tk= 13 | github.com/coreos/go-semver v0.2.0/go.mod h1:nnelYz7RCh+5ahJtPPxZlU+153eP4D4r3EedlOD2RNk= 14 | github.com/cpuguy83/go-md2man v1.0.10/go.mod h1:SmD6nW6nTyfqj6ABTjUi3V3JVMnlJmwcJI5acqYI6dE= 15 | github.com/cyphar/filepath-securejoin v0.2.2 h1:jCwT2GTP+PY5nBz3c/YL5PAIbusElVrPujOBSCj8xRg= 16 | github.com/cyphar/filepath-securejoin v0.2.2/go.mod h1:FpkQEhXnPnOthhzymB7CGsFk2G9VLXONKD9G7QGMM+4= 17 | github.com/davecgh/go-spew v0.0.0-20151105211317-5215b55f46b2/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= 18 | github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= 19 | github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= 20 | github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= 21 | github.com/docker/spdystream v0.0.0-20160310174837-449fdfce4d96/go.mod h1:Qh8CwZgvJUkLughtfhJv5dyTYa91l1fOUCrgjqmcifM= 22 | github.com/elazarl/goproxy v0.0.0-20170405201442-c4fc26588b6e/go.mod h1:/Zj4wYkgs4iZTTu3o/KG3Itv/qCCa8VVMlb3i9OVuzc= 23 | github.com/emicklei/go-restful v0.0.0-20170410110728-ff4f55a20633/go.mod h1:otzb+WCGbkyDHkqmQmT5YD2WR4BBwUdeQoFo8l/7tVs= 24 | github.com/evanphx/json-patch v4.2.0+incompatible/go.mod h1:50XU6AFN0ol/bzJsmQLiYLvXMP4fmwYFNcr97nuDLSk= 25 | github.com/fsnotify/fsnotify v1.4.7/go.mod h1:jwhsz4b93w/PPRr/qN1Yymfu8t87LnFCMoQvtojpjFo= 26 | github.com/ghodss/yaml v0.0.0-20150909031657-73d445a93680/go.mod h1:4dBDuWmgqj2HViK6kFavaiC9ZROes6MMH2rRYeMEF04= 27 | github.com/ghodss/yaml v1.0.0 h1:wQHKEahhL6wmXdzwWG11gIVCkOv05bNOh+Rxn0yngAk= 28 | github.com/ghodss/yaml v1.0.0/go.mod h1:4dBDuWmgqj2HViK6kFavaiC9ZROes6MMH2rRYeMEF04= 29 | github.com/go-openapi/jsonpointer v0.0.0-20160704185906-46af16f9f7b1/go.mod h1:+35s3my2LFTysnkMfxsJBAMHj/DoqoB9knIWoYG/Vk0= 30 | github.com/go-openapi/jsonreference v0.0.0-20160704190145-13c6e3589ad9/go.mod h1:W3Z9FmVs9qj+KR4zFKmDPGiLdk1D9Rlm7cyMvf57TTg= 31 | github.com/go-openapi/spec v0.0.0-20160808142527-6aced65f8501/go.mod h1:J8+jY1nAiCcj+friV/PDoE1/3eeccG9LYBs0tYvLOWc= 32 | github.com/go-openapi/swag v0.0.0-20160704191624-1d0bd113de87/go.mod h1:DXUve3Dpr1UfpPtxFw+EFuQ41HhCWZfha5jSVRG7C7I= 33 | github.com/gobwas/glob v0.2.3 h1:A4xDbljILXROh+kObIiy5kIaPYD8e96x1tgBhUI5J+Y= 34 | github.com/gobwas/glob v0.2.3/go.mod h1:d3Ez4x06l9bZtSvzIay5+Yzi0fmZzPgnTbPcKjJAkT8= 35 | github.com/gogo/protobuf v1.0.0/go.mod h1:r8qH/GZQm5c6nD/R0oafs1akxWv10x8SbQlK7atdtwQ= 36 | github.com/golang/groupcache v0.0.0-20160516000752-02826c3e7903/go.mod h1:cIg4eruTrX1D+g88fzRXU5OdNfaM+9IcxsU14FzY7Hc= 37 | github.com/golang/protobuf v0.0.0-20161109072736-4bd1920723d7/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U= 38 | github.com/golang/protobuf v1.2.0/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U= 39 | github.com/golang/protobuf v1.3.2 h1:6nsPYzhq5kReh6QImI3k5qWzO4PEbvbIW2cwSfR/6xs= 40 | github.com/golang/protobuf v1.3.2/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U= 41 | github.com/google/go-cmp v0.3.0/go.mod h1:8QqcDgzrUqlUb/G2PQTWiueGozuR1884gddMywk6iLU= 42 | github.com/google/gofuzz v0.0.0-20161122191042-44d81051d367/go.mod h1:HP5RmnzzSNb993RKQDq4+1A4ia9nllfqcQFTQJedwGI= 43 | github.com/google/gofuzz v1.0.0/go.mod h1:dBl0BpW6vV/+mYPU4Po3pmUjxk6FQPldtuIdl/M65Eg= 44 | github.com/google/uuid v1.1.1/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= 45 | github.com/googleapis/gnostic v0.0.0-20170426233943-68f4ded48ba9/go.mod h1:sJBsCZ4ayReDTBIg8b9dl28c5xFWyhBTVRp3pOg5EKY= 46 | github.com/googleapis/gnostic v0.0.0-20170729233727-0c5108395e2d/go.mod h1:sJBsCZ4ayReDTBIg8b9dl28c5xFWyhBTVRp3pOg5EKY= 47 | github.com/hashicorp/golang-lru v0.5.0/go.mod h1:/m3WP610KZHVQ1SGc6re/UDhFvYD7pJ4Ao+sR/qLZy8= 48 | github.com/hashicorp/hcl v1.0.0/go.mod h1:E5yfLk+7swimpb2L/Alb/PJmXilQ/rhwaUYs4T20WEQ= 49 | github.com/hpcloud/tail v1.0.0/go.mod h1:ab1qPbhIpdTxEkNHXyeSf5vhxWSCs/tWer42PpOxQnU= 50 | github.com/inconshreveable/mousetrap v1.0.0 h1:Z8tu5sraLXCXIcARxBp/8cbvlwVa7Z1NHg9XEKhtSvM= 51 | github.com/inconshreveable/mousetrap v1.0.0/go.mod h1:PxqpIevigyE2G7u3NXJIT2ANytuPF1OarO4DADm73n8= 52 | github.com/json-iterator/go v0.0.0-20180612202835-f2b4162afba3/go.mod h1:+SdeFBvtyEkXs7REEP0seUULqWtbJapLOCVDaaPEHmU= 53 | github.com/json-iterator/go v1.1.6/go.mod h1:+SdeFBvtyEkXs7REEP0seUULqWtbJapLOCVDaaPEHmU= 54 | github.com/kr/pretty v0.1.0 h1:L/CwN0zerZDmRFUapSPitk6f+Q3+0za1rQkzVuMiMFI= 55 | github.com/kr/pretty v0.1.0/go.mod h1:dAy3ld7l9f0ibDNOQOHHMYYIIbhfbHSm3C4ZsoJORNo= 56 | github.com/kr/pty v1.1.1/go.mod h1:pFQYn66WHrOpPYNljwOMqo10TkYh1fy3cYio2l3bCsQ= 57 | github.com/kr/text v0.1.0 h1:45sCR5RtlFHMR4UwH9sdQ5TC8v0qDQCHnXt+kaKSTVE= 58 | github.com/kr/text v0.1.0/go.mod h1:4Jbv+DJW3UT/LiOwJeYQe1efqtUx/iVham/4vfdArNI= 59 | github.com/magiconair/properties v1.8.0/go.mod h1:PppfXfuXeibc/6YijjN8zIbojt8czPbwD3XqdrwzmxQ= 60 | github.com/mailru/easyjson v0.0.0-20160728113105-d5b7844b561a/go.mod h1:C1wdFJiN94OJF2b5HbByQZoLdCWB1Yqtg26g4irojpc= 61 | github.com/mitchellh/go-homedir v1.1.0/go.mod h1:SfyaCUpYCn1Vlf4IUYiD9fPX4A5wJrkLzIz1N1q0pr0= 62 | github.com/mitchellh/mapstructure v1.1.2/go.mod h1:FVVH3fgwuzCH5S8UJGiWEs2h04kUh9fWfEaFds41c1Y= 63 | github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd/go.mod h1:6dJC0mAP4ikYIbvyc7fijjWJddQyLn8Ig3JB5CqoB9Q= 64 | github.com/modern-go/reflect2 v0.0.0-20180320133207-05fbef0ca5da/go.mod h1:bx2lNnkwVCuqBIxFjflWJWanXIb3RllmbCylyMrvgv0= 65 | github.com/modern-go/reflect2 v1.0.1/go.mod h1:bx2lNnkwVCuqBIxFjflWJWanXIb3RllmbCylyMrvgv0= 66 | github.com/munnerz/goautoneg v0.0.0-20120707110453-a547fc61f48d/go.mod h1:+n7T8mK8HuQTcFwEeznm/DIxMOiR9yIdICNftLE1DvQ= 67 | github.com/mxk/go-flowrate v0.0.0-20140419014527-cca7078d478f/go.mod h1:ZdcZmHo+o7JKHSa8/e818NopupXU1YMK5fe1lsApnBw= 68 | github.com/onsi/ginkgo v0.0.0-20170829012221-11459a886d9c/go.mod h1:lLunBs/Ym6LB5Z9jYTR76FiuTmxDTDusOGeTQH+WWjE= 69 | github.com/onsi/ginkgo v1.6.0/go.mod h1:lLunBs/Ym6LB5Z9jYTR76FiuTmxDTDusOGeTQH+WWjE= 70 | github.com/onsi/ginkgo v1.8.0/go.mod h1:lLunBs/Ym6LB5Z9jYTR76FiuTmxDTDusOGeTQH+WWjE= 71 | github.com/onsi/gomega v0.0.0-20170829124025-dcabb60a477c/go.mod h1:C1qb7wdrVGGVU+Z6iS04AVkA3Q65CEZX59MT0QO5uiA= 72 | github.com/onsi/gomega v1.5.0/go.mod h1:ex+gbHU/CVuBBDIJjb2X0qEXbFg53c61hWP/1CpauHY= 73 | github.com/pelletier/go-toml v1.2.0/go.mod h1:5z9KED0ma1S8pY6P1sdut58dfprrGBbd/94hg7ilaic= 74 | github.com/pkg/errors v0.8.1 h1:iURUrRGxPUNPdy5/HRSm+Yj6okJ6UtLINN0Q9M4+h3I= 75 | github.com/pkg/errors v0.8.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= 76 | github.com/pmezard/go-difflib v0.0.0-20151028094244-d8ed2627bdf0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= 77 | github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM= 78 | github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= 79 | github.com/russross/blackfriday v1.5.2/go.mod h1:JO/DiYxRf+HjHt06OyowR9PTA263kcR/rfWxYHBV53g= 80 | github.com/spf13/afero v1.1.2/go.mod h1:j4pytiNVoe2o6bmDsKpLACNPDBIoEAkihy7loJ1B0CQ= 81 | github.com/spf13/cast v1.3.0/go.mod h1:Qx5cxh0v+4UWYiBimWS+eyWzqEqokIECu5etghLkUJE= 82 | github.com/spf13/cobra v0.0.5 h1:f0B+LkLX6DtmRH1isoNA9VTtNUK9K8xYd28JNNfOv/s= 83 | github.com/spf13/cobra v0.0.5/go.mod h1:3K3wKZymM7VvHMDS9+Akkh4K60UwM26emMESw8tLCHU= 84 | github.com/spf13/jwalterweatherman v1.0.0/go.mod h1:cQK4TGJAtQXfYWX+Ddv3mKDzgVb68N+wFjFa4jdeBTo= 85 | github.com/spf13/pflag v0.0.0-20170130214245-9ff6c6923cff/go.mod h1:DYY7MBk1bdzusC3SYhjObp+wFpr4gzcvqqNjLnInEg4= 86 | github.com/spf13/pflag v1.0.3 h1:zPAT6CGy6wXeQ7NtTnaTerfKOsV6V6F8agHXFiazDkg= 87 | github.com/spf13/pflag v1.0.3/go.mod h1:DYY7MBk1bdzusC3SYhjObp+wFpr4gzcvqqNjLnInEg4= 88 | github.com/spf13/viper v1.3.2/go.mod h1:ZiWeW+zYFKm7srdB9IoDzzZXaJaI5eL9QjNiN/DMA2s= 89 | github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME= 90 | github.com/stretchr/testify v0.0.0-20151208002404-e3a8ff8ce365/go.mod h1:a8OnRcib4nhh0OaRAV+Yts87kKdq0PP7pXfy6kDkUVs= 91 | github.com/stretchr/testify v1.2.2 h1:bSDNvY7ZPG5RlJ8otE/7V6gMiyenm9RtJ7IUVIAoJ1w= 92 | github.com/stretchr/testify v1.2.2/go.mod h1:a8OnRcib4nhh0OaRAV+Yts87kKdq0PP7pXfy6kDkUVs= 93 | github.com/stretchr/testify v1.3.0 h1:TivCn/peBQ7UY8ooIcPgZFpTNSz0Q2U6UrFlUfqbe0Q= 94 | github.com/stretchr/testify v1.3.0/go.mod h1:M5WIy9Dh21IEIfnGCwXGc5bZfKNJtfHm1UVUgZn+9EI= 95 | github.com/ugorji/go/codec v0.0.0-20181204163529-d75b2dcb6bc8/go.mod h1:VFNgLljTbGfSG7qAOspJ7OScBnGdDN/yBr0sguwnwf0= 96 | github.com/xordataexchange/crypt v0.0.3-0.20170626215501-b2862e3d0a77/go.mod h1:aYKd//L2LvnjZzWKhF00oedf4jCCReLcmhLdhm1A27Q= 97 | golang.org/x/crypto v0.0.0-20181203042331-505ab145d0a9 h1:mKdxBk7AujPs8kU4m80U72y/zjbZ3UcXC7dClwKbUI0= 98 | golang.org/x/crypto v0.0.0-20181203042331-505ab145d0a9/go.mod h1:6SG95UA2DQfeDnfUPMdvaQW0Q7yPrPDi9nlGo2tz2b4= 99 | golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2 h1:VklqNMn3ovrHsnt90PveolxSbWFaJdECFbxSq0Mqo2M= 100 | golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w= 101 | golang.org/x/net v0.0.0-20170114055629-f2499483f923/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= 102 | golang.org/x/net v0.0.0-20180906233101-161cd47e91fd/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= 103 | golang.org/x/net v0.0.0-20190613194153-d28f0bde5980/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= 104 | golang.org/x/sync v0.0.0-20180314180146-1d60e4601c6f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= 105 | golang.org/x/sync v0.0.0-20181221193216-37e7f081c4d4/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= 106 | golang.org/x/sys v0.0.0-20170830134202-bb24a47a89ea/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= 107 | golang.org/x/sys v0.0.0-20180909124046-d0be0721c37e/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= 108 | golang.org/x/sys v0.0.0-20181205085412-a5c9d58dba9a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= 109 | golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= 110 | golang.org/x/sys v0.0.0-20190616124812-15dcb6c0061f/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= 111 | golang.org/x/text v0.0.0-20160726164857-2910a502d2bf/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= 112 | golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= 113 | golang.org/x/text v0.3.2/go.mod h1:bEr9sfX3Q8Zfm5fL9x+3itogRgK3+ptLWKqgva+5dAk= 114 | golang.org/x/tools v0.0.0-20180917221912-90fa682c2a6e/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= 115 | golang.org/x/tools v0.0.0-20181011042414-1f849cf54d09/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= 116 | gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405 h1:yhCVgyC4o1eVCa2tZl7eS0r+SDo693bJlVdllGtEeKM= 117 | gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= 118 | gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127 h1:qIbj1fsPNlZgppZ+VLlY7N33q108Sa+fhmuc+sWQYwY= 119 | gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= 120 | gopkg.in/fsnotify.v1 v1.4.7/go.mod h1:Tz8NjZHkW78fSQdbUxIjBTcgA1z1m8ZHf0WmKUhAMys= 121 | gopkg.in/inf.v0 v0.9.0/go.mod h1:cWUDdTG/fYaXco+Dcufb5Vnc6Gp2YChqWtbxRZE0mXw= 122 | gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7/go.mod h1:dt/ZhP58zS4L8KSrWDmTeBkI65Dw0HsyUHuEVlX15mw= 123 | gopkg.in/yaml.v2 v2.2.1/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= 124 | gopkg.in/yaml.v2 v2.2.2 h1:ZCJp+EgiOT7lHqUV2J862kp8Qj64Jo6az82+3Td9dZw= 125 | gopkg.in/yaml.v2 v2.2.2/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= 126 | k8s.io/apimachinery v0.0.0-20190719140911-bfcf53abc9f8 h1:fVMoqaOPZ6KTeszBSBO8buFmXaR2JlnMn53eEBeganU= 127 | k8s.io/apimachinery v0.0.0-20190719140911-bfcf53abc9f8/go.mod h1:sBJWIJZfxLhp7mRsRyuAE/NfKTr3kXGR1iaqg8O0gJo= 128 | k8s.io/client-go v11.0.0+incompatible h1:LBbX2+lOwY9flffWlJM7f1Ct8V2SRNiMRDFeiwnJo9o= 129 | k8s.io/client-go v11.0.0+incompatible/go.mod h1:7vJpHMYJwNQCWgzmNV+VYUl1zCObLyodBc8nIyt8L5s= 130 | k8s.io/gengo v0.0.0-20190128074634-0689ccc1d7d6/go.mod h1:ezvh/TsK7cY6rbqRK0oQQ8IAqLxYwwyPxAX1Pzy0ii0= 131 | k8s.io/helm v2.14.2+incompatible h1:kT4JDDvxvp/AR7sWTuTnv58SzVYP0KHIGFIXThSp7gc= 132 | k8s.io/helm v2.14.2+incompatible/go.mod h1:LZzlS4LQBHfciFOurYBFkCMTaZ0D1l+p0teMg7TSULI= 133 | k8s.io/klog v0.0.0-20181102134211-b9b56d5dfc92/go.mod h1:Gq+BEi5rUBO/HRz0bTSXDUcqjScdoY3a9IHpCEIOOfk= 134 | k8s.io/klog v0.3.1/go.mod h1:Gq+BEi5rUBO/HRz0bTSXDUcqjScdoY3a9IHpCEIOOfk= 135 | k8s.io/kube-openapi v0.0.0-20190709113604-33be087ad058/go.mod h1:nfDlWeOsu3pUf4yWGL+ERqohP4YsZcBJXWMK+gkzOA4= 136 | sigs.k8s.io/structured-merge-diff v0.0.0-20190525122527-15d366b2352e/go.mod h1:wWxsB5ozmmv/SG7nM11ayaAW51xMvak/t1r0CSlcokI= 137 | sigs.k8s.io/yaml v1.1.0/go.mod h1:UJmg0vDUVViEyp3mgSv9WPwZCDxu4rQW1olrI1uml+o= 138 | --------------------------------------------------------------------------------