diff --git a/install-binary.sh b/install-binary.sh index 81a700b..3ea1d45 100755 --- a/install-binary.sh +++ b/install-binary.sh @@ -55,9 +55,12 @@ function install() { exit 1 fi + echo echo "helm-images is installed." echo - echo "See https://github.com/nikhilsbhat/helm-images for help getting started." + "${HELM_PLUGIN_DIR}"/bin/helm-images -h + echo + echo "See https://github.com/nikhilsbhat/helm-images#readme for more information on getting started." } install "$@" diff --git a/pkg/utils.go b/pkg/utils.go index 2ac0046..1b08e39 100644 --- a/pkg/utils.go +++ b/pkg/utils.go @@ -103,7 +103,6 @@ func getUniqEntries(slice []kind) []kind { func contains(slice []kind, image string) bool { for _, slc := range slice { if slc.Image == image { - fmt.Println(image, slc.Image) return true } } diff --git a/plugin.yaml b/plugin.yaml index cb21c33..7b54032 100644 --- a/plugin.yaml +++ b/plugin.yaml @@ -1,5 +1,5 @@ name: "images" -version: "0.0.4" +version: "0.0.5" usage: "Lists all/selected docker images that are part of deployment" description: "Lists all/selected docker images that would be part of deployment of selected chart" useTunnel: true