Skip to content

Commit 4aedcba

Browse files
authored
Remove cloud commands, make sure segment doesn't spam logs with errors (#1477)
1 parent ffbe784 commit 4aedcba

13 files changed

+13
-518
lines changed

.github/workflows/branch-build.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -86,9 +86,9 @@ jobs:
8686

8787
matrix:
8888
integration:
89-
- slack
89+
# - slack they are cloud based
90+
# - teams they are cloud based
9091
- discord
91-
- teams
9292

9393
steps:
9494
- name: Checkout code

.github/workflows/pr-build.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -193,9 +193,9 @@ jobs:
193193

194194
matrix:
195195
integration:
196-
- slack
196+
# - slack they are cloud based
197+
# - teams they are cloud based
197198
- discord
198-
- teams
199199

200200
steps:
201201
- name: Checkout code

.github/workflows/prod-e2e-test.yml

-49
This file was deleted.

cmd/cli/cmd/login.go

-37
This file was deleted.

cmd/cli/cmd/migrate.go

-142
This file was deleted.

cmd/cli/cmd/root.go

-7
Original file line numberDiff line numberDiff line change
@@ -29,11 +29,6 @@ func NewRoot() *cobra.Command {
2929
3030
$ <cli> install # Install Botkube
3131
$ <cli> uninstall # Uninstall Botkube
32-
33-
Botkube Cloud:
34-
35-
$ <cli> login # Login into Botkube Cloud
36-
$ <cli> migrate # Automatically migrates Open Source installation into Botkube Cloud
3732
`, cli.Name),
3833
SilenceUsage: true,
3934
RunE: func(cmd *cobra.Command, args []string) error {
@@ -44,8 +39,6 @@ func NewRoot() *cobra.Command {
4439
cli.RegisterVerboseModeFlag(rootCmd.PersistentFlags())
4540

4641
rootCmd.AddCommand(
47-
NewLogin(),
48-
NewMigrate(),
4942
NewDocs(),
5043
NewInstall(),
5144
NewUninstall(),

cmd/cli/docs/botkube.md

-7
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,6 @@ Quick Start:
1616

1717
$ botkube install # Install Botkube
1818
$ botkube uninstall # Uninstall Botkube
19-
20-
Botkube Cloud:
21-
22-
$ botkube login # Login into Botkube Cloud
23-
$ botkube migrate # Automatically migrates Open Source installation into Botkube Cloud
2419

2520

2621
```
@@ -38,8 +33,6 @@ botkube [flags]
3833

3934
* [botkube config](botkube_config.md) - This command consists of multiple subcommands for working with Botkube configuration
4035
* [botkube install](botkube_install.md) - install or upgrade Botkube in k8s cluster
41-
* [botkube login](botkube_login.md) - Login to a Botkube Cloud
42-
* [botkube migrate](botkube_migrate.md) - Automatically migrates Botkube installation into Botkube Cloud
4336
* [botkube telemetry](botkube_telemetry.md) - Configure collection of anonymous analytics
4437
* [botkube uninstall](botkube_uninstall.md) - uninstall Botkube from cluster
4538
* [botkube version](botkube_version.md) - Print the CLI version

cmd/cli/docs/botkube_login.md

-38
This file was deleted.

0 commit comments

Comments
 (0)