Skip to content

Commit

Permalink
docs: bump version
Browse files Browse the repository at this point in the history
Signed-off-by: Jeremy PLANCKEEL <[email protected]>
  • Loading branch information
jplanckeel committed Mar 8, 2024
1 parent 60a7a42 commit 95a8c9d
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 2 deletions.
10 changes: 10 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand All @@ -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")
}

0 comments on commit 95a8c9d

Please sign in to comment.