-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(remove): Update command from delete to remove (#58)
* feat(remove): Update command from delete to remove https://meroxa.atlassian.net/browse/PLATFORM-31 * Add backwards compatibility wiht destroy Co-authored-by: Lyubo Kamenov <lyubo@meroxa.io> * fix(create): Use better argument name * fix(remove): Make acceptance tests to pass * Update cmd/remove.go Co-authored-by: Ali Hamidi <57750952+ahmeroxa@users.noreply.github.com> * Update cmd/create.go Co-authored-by: Ali Hamidi <57750952+ahmeroxa@users.noreply.github.com> Co-authored-by: Lyubo Kamenov <lyubo@meroxa.io> Co-authored-by: Ali Hamidi <57750952+ahmeroxa@users.noreply.github.com>
- Loading branch information
1 parent
6719dfd
commit 8bac37b
Showing
29 changed files
with
154 additions
and
47 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
## meroxa remove | ||
|
||
Remove a component | ||
|
||
### Synopsis | ||
|
||
Deprovision a component of the Meroxa platform, including pipelines, | ||
resources, and connectors | ||
|
||
### Options | ||
|
||
``` | ||
-h, --help help for remove | ||
``` | ||
|
||
### Options inherited from parent commands | ||
|
||
``` | ||
--json output json | ||
``` | ||
|
||
### SEE ALSO | ||
|
||
* [meroxa](meroxa.md) - The Meroxa CLI | ||
* [meroxa remove connector](meroxa_remove_connector.md) - Remove connector | ||
* [meroxa remove pipeline](meroxa_remove_pipeline.md) - Remove pipeline | ||
* [meroxa remove resource](meroxa_remove_resource.md) - Remove resource | ||
|
||
###### Auto generated by spf13/cobra on 17-Feb-2021 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
## meroxa remove connector | ||
|
||
Remove connector | ||
|
||
``` | ||
meroxa remove connector <name> [flags] | ||
``` | ||
|
||
### Options | ||
|
||
``` | ||
-h, --help help for connector | ||
``` | ||
|
||
### Options inherited from parent commands | ||
|
||
``` | ||
--json output json | ||
``` | ||
|
||
### SEE ALSO | ||
|
||
* [meroxa remove](meroxa_remove.md) - Remove a component | ||
|
||
###### Auto generated by spf13/cobra on 17-Feb-2021 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
## meroxa remove pipeline | ||
|
||
Remove pipeline | ||
|
||
``` | ||
meroxa remove pipeline <name> [flags] | ||
``` | ||
|
||
### Options | ||
|
||
``` | ||
-h, --help help for pipeline | ||
``` | ||
|
||
### Options inherited from parent commands | ||
|
||
``` | ||
--json output json | ||
``` | ||
|
||
### SEE ALSO | ||
|
||
* [meroxa remove](meroxa_remove.md) - Remove a component | ||
|
||
###### Auto generated by spf13/cobra on 17-Feb-2021 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
## meroxa remove resource | ||
|
||
Remove resource | ||
|
||
``` | ||
meroxa remove resource <name> [flags] | ||
``` | ||
|
||
### Options | ||
|
||
``` | ||
-h, --help help for resource | ||
``` | ||
|
||
### Options inherited from parent commands | ||
|
||
``` | ||
--json output json | ||
``` | ||
|
||
### SEE ALSO | ||
|
||
* [meroxa remove](meroxa_remove.md) - Remove a component | ||
|
||
###### Auto generated by spf13/cobra on 17-Feb-2021 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters