Skip to content
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
3 changes: 3 additions & 0 deletions changelog/fragments/alias-run-packagemanifests.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
entries:
- description: Alias `run packagemanifests` as `run pm`
kind: addition
1 change: 1 addition & 0 deletions cmd/operator-sdk/run/packagemanifests/packagemanifests.go
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ func NewCmd() *cobra.Command {
Short: "Deploy an Operator in the package manifests format with OLM",
Long: `'run packagemanifests' deploys an Operator's package manifests with OLM. The command's argument
must be set to a valid package manifests root directory, ex. '<project-root>/packagemanifests'.`,
Aliases: []string{"pm"},
RunE: func(cmd *cobra.Command, args []string) error {
if len(args) > 0 {
if len(args) > 1 {
Expand Down