diff --git a/cmd/hauler/cli/store.go b/cmd/hauler/cli/store.go index 3c20d14..e2bb56b 100644 --- a/cmd/hauler/cli/store.go +++ b/cmd/hauler/cli/store.go @@ -423,7 +423,7 @@ func addStoreRemove(rso *flags.StoreRootOpts, ro *flags.CliRootOpts) *cobra.Comm o := &flags.RemoveOpts{} cmd := &cobra.Command{ Use: "remove ", - Short: "(EXPERIMENTAL) Remove an artifact from the content store", + Short: "Remove an artifact from the content store", Example: ` # remove an image using full store reference hauler store info hauler store remove index.docker.io/library/busybox:stable diff --git a/internal/flags/add.go b/internal/flags/add.go index 7dc0150..b1c5978 100644 --- a/internal/flags/add.go +++ b/internal/flags/add.go @@ -31,7 +31,7 @@ func (o *AddImageOpts) AddFlags(cmd *cobra.Command) { f.StringVar(&o.CertGithubWorkflowRepository, "certificate-github-workflow-repository", "", "(Optional) Cosign certificate-github-workflow-repository option") f.BoolVar(&o.Tlog, "use-tlog-verify", false, "(Optional) Enable transparency log verification for key-based signature verification (keyless/OIDC verification always uses the tlog)") f.StringVarP(&o.Platform, "platform", "p", "", "(Optional) Specify the platform of the image... i.e. linux/amd64 (defaults to all)") - f.StringVar(&o.Rewrite, "rewrite", "", "(EXPERIMENTAL & Optional) Rewrite artifact path to specified string") + f.StringVar(&o.Rewrite, "rewrite", "", "(Optional) Rewrite artifact path to specified string") f.BoolVar(&o.ExcludeExtras, "exclude-extras", false, "(Optional) Exclude cosign signatures, attestations, SBOMs, and OCI referrers when pulling the image") f.BoolVar(&o.Local, "local", false, "(Optional) Add image from the local Docker daemon instead of a remote registry") } @@ -72,7 +72,7 @@ func (o *AddChartOpts) AddFlags(cmd *cobra.Command) { f.StringVar(&o.ChartOpts.KeyFile, "key-file", "", "(Optional) Location of the TLS Key to use for client authentication") f.BoolVar(&o.ChartOpts.InsecureSkipTLSverify, "insecure-skip-tls-verify", false, "(Optional) Skip TLS certificate verification") f.StringVar(&o.ChartOpts.CaFile, "ca-file", "", "(Optional) Location of CA Bundle to enable certification verification") - f.StringVar(&o.Rewrite, "rewrite", "", "(EXPERIMENTAL & Optional) Rewrite artifact path to specified string") + f.StringVar(&o.Rewrite, "rewrite", "", "(Optional) Rewrite artifact path to specified string") cmd.MarkFlagsRequiredTogether("username", "password") cmd.MarkFlagsRequiredTogether("cert-file", "key-file", "ca-file")