diff --git a/create/create.go b/create/create.go index c5aa1e9..ccec2ea 100644 --- a/create/create.go +++ b/create/create.go @@ -26,7 +26,7 @@ type Cmd struct { APIServiceAccount apiServiceAccountCmd `cmd:"" group:"iam.nine.ch" name:"apiserviceaccount" aliases:"asa" help:"Create a new API Service Account."` Project projectCmd `cmd:"" group:"management.nine.ch" name:"project" help:"Create a new project."` Config configCmd `cmd:"" group:"deplo.io" name:"config" help:"Create a new deplo.io Project Configuration."` - Application applicationCmd `cmd:"" group:"deplo.io" name:"application" aliases:"app" help:"Create a new deplo.io Application."` + Application applicationCmd `cmd:"" group:"deplo.io" name:"application" aliases:"app,application" help:"Create a new deplo.io Application."` MySQL mySQLCmd `cmd:"" group:"storage.nine.ch" name:"mysql" help:"Create a new MySQL instance."` Postgres postgresCmd `cmd:"" group:"storage.nine.ch" name:"postgres" help:"Create a new PostgreSQL instance."` KeyValueStore keyValueStoreCmd `cmd:"" group:"storage.nine.ch" name:"keyvaluestore" aliases:"kvs" help:"Create a new KeyValueStore instance"` diff --git a/delete/delete.go b/delete/delete.go index f397c1b..a1186aa 100644 --- a/delete/delete.go +++ b/delete/delete.go @@ -18,7 +18,7 @@ type Cmd struct { APIServiceAccount apiServiceAccountCmd `cmd:"" group:"iam.nine.ch" name:"apiserviceaccount" aliases:"asa" help:"Delete an API Service Account."` Project projectCmd `cmd:"" group:"management.nine.ch" name:"project" aliases:"proj" help:"Delete a Project."` Config configCmd `cmd:"" group:"deplo.io" name:"config" help:"Delete a deplo.io Project Configuration."` - Application applicationCmd `cmd:"" group:"deplo.io" name:"application" aliases:"app" help:"Delete a deplo.io Application."` + Application applicationCmd `cmd:"" group:"deplo.io" name:"application" aliases:"app,application" help:"Delete a deplo.io Application."` MySQL mySQLCmd `cmd:"" group:"storage.nine.ch" name:"mysql" help:"Delete a MySQL instance."` Postgres postgresCmd `cmd:"" group:"storage.nine.ch" name:"postgres" help:"Delete a PostgreSQL instance."` KeyValueStore keyValueStoreCmd `cmd:"" group:"storage.nine.ch" name:"keyvaluestore" aliases:"kvs" help:"Delete a KeyValueStore instance."` diff --git a/exec/exec.go b/exec/exec.go index d1ba589..a36bd3a 100644 --- a/exec/exec.go +++ b/exec/exec.go @@ -1,7 +1,7 @@ package exec type Cmd struct { - Application applicationCmd `cmd:"" group:"deplo.io" aliases:"app" name:"application" help:"Execute a command or shell in a deplo.io application."` + Application applicationCmd `cmd:"" group:"deplo.io" aliases:"app,application" name:"application" help:"Execute a command or shell in a deplo.io application."` } type resourceCmd struct { diff --git a/get/get.go b/get/get.go index 9b1f4d0..dc9f720 100644 --- a/get/get.go +++ b/get/get.go @@ -28,7 +28,7 @@ type Cmd struct { Clusters clustersCmd `cmd:"" group:"infrastructure.nine.ch" aliases:"cluster,vcluster" help:"Get Kubernetes Clusters."` APIServiceAccounts apiServiceAccountsCmd `cmd:"" group:"iam.nine.ch" name:"apiserviceaccounts" aliases:"asa" help:"Get API Service Accounts."` Projects projectCmd `cmd:"" group:"management.nine.ch" name:"projects" aliases:"proj" help:"Get Projects."` - Applications applicationsCmd `cmd:"" group:"deplo.io" name:"applications" aliases:"app,apps" help:"Get deplo.io Applications."` + Applications applicationsCmd `cmd:"" group:"deplo.io" name:"applications" aliases:"app,apps,application" help:"Get deplo.io Applications."` Builds buildCmd `cmd:"" group:"deplo.io" name:"builds" aliases:"build" help:"Get deplo.io Builds."` Releases releasesCmd `cmd:"" group:"deplo.io" name:"releases" aliases:"release" help:"Get deplo.io Releases."` Configs configsCmd `cmd:"" group:"deplo.io" name:"configs" aliases:"config" help:"Get deplo.io Project Configuration."` diff --git a/logs/logs.go b/logs/logs.go index 71d3cd1..ef294e9 100644 --- a/logs/logs.go +++ b/logs/logs.go @@ -13,7 +13,7 @@ import ( ) type Cmd struct { - Applications applicationCmd `cmd:"" group:"deplo.io" name:"application" aliases:"app" help:"Get deplo.io Application logs."` + Applications applicationCmd `cmd:"" group:"deplo.io" name:"application" aliases:"app,application" help:"Get deplo.io Application logs."` Builds buildCmd `cmd:"" group:"deplo.io" name:"build" help:"Get deplo.io Build logs."` } diff --git a/update/update.go b/update/update.go index d65303d..246a173 100644 --- a/update/update.go +++ b/update/update.go @@ -9,7 +9,7 @@ import ( ) type Cmd struct { - Application applicationCmd `cmd:"" group:"deplo.io" name:"application" aliases:"app" help:"Update an existing deplo.io Application."` + Application applicationCmd `cmd:"" group:"deplo.io" name:"application" aliases:"app,application" help:"Update an existing deplo.io Application."` Config configCmd `cmd:"" group:"deplo.io" name:"config" help:"Update an existing deplo.io Project Configuration."` Project projectCmd `cmd:"" group:"management.nine.ch" name:"project" help:"Update an existing Project"` MySQL mySQLCmd `cmd:"" group:"storage.nine.ch" name:"mysql" help:"Update an existing MySQL instance."`