From d8a423d10ba523d82ffbe74e97324d37df4b2def Mon Sep 17 00:00:00 2001 From: Brad Beam Date: Fri, 4 May 2018 21:22:02 -0500 Subject: [PATCH] Fixing usage syntax s/api-group/api-version/ --- commands/operator-sdk/cmd/new.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/operator-sdk/cmd/new.go b/commands/operator-sdk/cmd/new.go index 4b318b61b4..7dcf1f1106 100644 --- a/commands/operator-sdk/cmd/new.go +++ b/commands/operator-sdk/cmd/new.go @@ -43,7 +43,7 @@ generates a default directory layout based on the input . For example: $ mkdir $GOPATH/src/github.com/example.com/ $ cd $GOPATH/src/github.com/example.com/ - $ operator-sdk new app-operator --api-group=app.example.com/v1alpha1 --kind=AppService + $ operator-sdk new app-operator --api-version=app.example.com/v1alpha1 --kind=AppService generates a skeletal app-operator application in $GOPATH/src/github.com/example.com/app-operator. `, Run: newFunc,