diff --git a/README.md b/README.md index f67571a..1a08200 100644 --- a/README.md +++ b/README.md @@ -90,6 +90,16 @@ prometheus-community.github.io/helm-charts: ``` +## Docker Image + +You can find a docker image with Helm and Scope cli here : + +https://hub.docker.com/r/jplanckeel/scope + +```bash +docker run jplanckeel/scope scope -h +``` + ## CI ### Gitlab-ci diff --git a/main.go b/main.go index fa589a0..855155e 100644 --- a/main.go +++ b/main.go @@ -9,7 +9,7 @@ import ( var config internal.ScopeConfig var rootCmd = &cobra.Command{ - Version: "0.2.0", + Version: "0.3.0", Use: "scope", Short: "a cli to sync helmchart to private registry", Run: func(cmd *cobra.Command, args []string) { @@ -30,7 +30,7 @@ func init() { rootCmd.PersistentFlags().BoolVarP(&config.Dryrun, "dryrun", "d", false, "enable dry-run mode") rootCmd.PersistentFlags().StringVarP(&config.ConfigFile, "config", "c", "", "path to configfile") rootCmd.PersistentFlags().StringVarP(&config.Registry, "registry", "r", "", "destination chart registry") - rootCmd.PersistentFlags().StringVarP(&config.RegistryType, "registry-type", "t", "oci", "registry nexus or ecr (default: oci)") + rootCmd.PersistentFlags().StringVarP(&config.RegistryType, "registry-type", "t", "oci", "registry nexus or oci") rootCmd.PersistentFlags().StringVarP(&config.User, "user", "u", "", "user for nexus registry") rootCmd.PersistentFlags().StringVarP(&config.Password, "password", "p", "", "password for nexus registry") }