Update attestation's beta designation
This commit is contained in:
parent
0740c00f0a
commit
d51ae5ced9
5 changed files with 10 additions and 10 deletions
|
|
@ -14,10 +14,10 @@ import (
|
|||
func NewCmdAttestation(f *cmdutil.Factory) *cobra.Command {
|
||||
root := &cobra.Command{
|
||||
Use: "attestation [subcommand]",
|
||||
Short: "(BETA) Work with artifact attestations",
|
||||
Short: "Work with artifact attestations",
|
||||
Aliases: []string{"at"},
|
||||
Long: heredoc.Doc(`
|
||||
# BETA: Feature subject to change
|
||||
# NOTE: This feature is currently in beta, and subject to change.
|
||||
|
||||
Download and verify artifact attestations.
|
||||
`),
|
||||
|
|
|
|||
|
|
@ -21,9 +21,9 @@ func NewDownloadCmd(f *cmdutil.Factory, runF func(*Options) error) *cobra.Comman
|
|||
downloadCmd := &cobra.Command{
|
||||
Use: "download [<file-path> | oci://<image-uri>] [--owner | --repo]",
|
||||
Args: cmdutil.ExactArgs(1, "must specify file path or container image URI, as well as one of --owner or --repo"),
|
||||
Short: "(BETA) Download an artifact's Sigstore bundle(s) for offline use",
|
||||
Short: "Download an artifact's Sigstore bundle(s) for offline use",
|
||||
Long: heredoc.Docf(`
|
||||
# BETA: Feature subject to change
|
||||
# NOTE: This feature is currently in beta, and subject to change.
|
||||
|
||||
Download an artifact's attestations, aka Sigstore bundle(s), for offline use.
|
||||
|
||||
|
|
|
|||
|
|
@ -21,9 +21,9 @@ func NewInspectCmd(f *cmdutil.Factory, runF func(*Options) error) *cobra.Command
|
|||
Use: "inspect [<file path> | oci://<OCI image URI>] --bundle <path-to-bundle>",
|
||||
Args: cmdutil.ExactArgs(1, "must specify file path or container image URI, as well --bundle"),
|
||||
Hidden: true,
|
||||
Short: "(BETA) Inspect a sigstore bundle",
|
||||
Short: "Inspect a sigstore bundle",
|
||||
Long: heredoc.Docf(`
|
||||
# BETA: Feature subject to change
|
||||
# NOTE: This feature is currently in beta, and subject to change.
|
||||
|
||||
Inspect a downloaded Sigstore bundle for a given artifact.
|
||||
|
||||
|
|
|
|||
|
|
@ -21,10 +21,10 @@ func NewTUFRootVerifyCmd(f *cmdutil.Factory, runF func() error) *cobra.Command {
|
|||
var cmd = cobra.Command{
|
||||
Use: "tuf-root-verify --mirror <mirror-url> --root <root.json>",
|
||||
Args: cobra.ExactArgs(0),
|
||||
Short: "(BETA) Verify the TUF repository from a provided TUF root",
|
||||
Short: "Verify the TUF repository from a provided TUF root",
|
||||
Hidden: true,
|
||||
Long: heredoc.Docf(`
|
||||
# BETA: Feature subject to change
|
||||
# NOTE: This feature is currently in beta, and subject to change.
|
||||
|
||||
Verify a TUF repository with a local TUF root.
|
||||
|
||||
|
|
|
|||
|
|
@ -23,9 +23,9 @@ func NewVerifyCmd(f *cmdutil.Factory, runF func(*Options) error) *cobra.Command
|
|||
verifyCmd := &cobra.Command{
|
||||
Use: "verify [<file-path> | oci://<image-uri>] [--owner | --repo]",
|
||||
Args: cmdutil.ExactArgs(1, "must specify file path or container image URI, as well as one of --owner or --repo"),
|
||||
Short: "(BETA) Verify an artifact's integrity using attestations",
|
||||
Short: "Verify an artifact's integrity using attestations",
|
||||
Long: heredoc.Docf(`
|
||||
# BETA: Feature subject to change
|
||||
# NOTE: This feature is currently in beta, and subject to change.
|
||||
|
||||
Verify the integrity and provenance of an artifact using its associated
|
||||
cryptographically signed attestations.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue