Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

doc: remove preview mark from policy commands #629

Merged
merged 1 commit into from
Apr 15, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions cmd/notation/policy/cmd.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ import "github.com/spf13/cobra"
func Cmd() *cobra.Command {
command := &cobra.Command{
Use: "policy [command]",
Short: "[Preview] Manage trust policy configuration",
Long: "[Preview] Manage trust policy configuration for signature verification.",
Short: "Manage trust policy configuration",
Long: "Manage trust policy configuration for signature verification.",
}

command.AddCommand(
Expand Down
4 changes: 2 additions & 2 deletions cmd/notation/policy/import.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ func importCmd() *cobra.Command {
var opts importOpts
command := &cobra.Command{
Use: "import [flags] <file_path>",
Short: "[Preview] Import trust policy configuration from a JSON file",
Long: `[Preview] Import trust policy configuration from a JSON file.
Short: "Import trust policy configuration from a JSON file",
Long: `Import trust policy configuration from a JSON file.

** This command is in preview and under development. **

Expand Down
4 changes: 2 additions & 2 deletions cmd/notation/policy/show.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ func showCmd() *cobra.Command {
var opts showOpts
command := &cobra.Command{
Use: "show [flags]",
Short: "[Preview] Show trust policy configuration",
Long: `[Preview] Show trust policy configuration.
Short: "Show trust policy configuration",
Long: `Show trust policy configuration.

** This command is in preview and under development. **

Expand Down
4 changes: 2 additions & 2 deletions specs/notation-cli.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ This spec contains reference information on using notation commands. Each comman
| [login](./commandline/login.md) | Login to registries |
| [logout](./commandline/logout.md) | Log out from the logged in registries |
| [plugin](./commandline/plugin.md) | Manage plugins |
| [policy](./commandline/policy.md) | [Preview] Manage trust policy configuration for signature verification |
| [policy](./commandline/policy.md) | Manage trust policy configuration for signature verification |
| [sign](./commandline/sign.md) | Sign artifacts |
| [verify](./commandline/verify.md) | Verify artifacts |
| [version](./commandline/version.md) | Print the version of notation CLI |
Expand All @@ -34,7 +34,7 @@ Available Commands:
login Login to registry
logout Log out from the logged in registries
plugin Manage plugins
policy [Preview] Manage trust policy configuration for signature verification
policy Manage trust policy configuration for signature verification
sign Sign artifacts
verify Verify artifacts
version Show the notation version information
Expand Down