Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: Remove GitOps Run components from WGE #3582

Merged
merged 13 commits into from
Nov 7, 2023
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
4 changes: 4 additions & 0 deletions cmd/clusters-service/pkg/server/automations_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -730,6 +730,7 @@ spec:
creationPolicy: Owner
name: new-secret
status:
binding: {}
refreshTime: null
`,
},
Expand Down Expand Up @@ -811,6 +812,7 @@ spec:
creationPolicy: Owner
name: new-secret
status:
binding: {}
refreshTime: null
`,
},
Expand Down Expand Up @@ -876,6 +878,7 @@ spec:
creationPolicy: Owner
name: new-secret
status:
binding: {}
refreshTime: null
`,
},
Expand Down Expand Up @@ -1214,6 +1217,7 @@ spec:
creationPolicy: Owner
name: new-secret
status:
binding: {}
refreshTime: null
`,
},
Expand Down
18 changes: 0 additions & 18 deletions cmd/gitops/app/remove/cmd.go

This file was deleted.

202 changes: 0 additions & 202 deletions cmd/gitops/app/remove/run/cmd.go

This file was deleted.

4 changes: 0 additions & 4 deletions cmd/gitops/app/root/cmd.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,9 @@ import (
"github.com/weaveworks/weave-gitops-enterprise/cmd/gitops/app/disconnect"
"github.com/weaveworks/weave-gitops-enterprise/cmd/gitops/app/generate"
"github.com/weaveworks/weave-gitops-enterprise/cmd/gitops/app/get"
"github.com/weaveworks/weave-gitops-enterprise/cmd/gitops/app/remove"
"github.com/weaveworks/weave-gitops-enterprise/cmd/gitops/app/update"
"github.com/weaveworks/weave-gitops-enterprise/cmd/gitops/app/upgrade"
"github.com/weaveworks/weave-gitops-enterprise/cmd/gitops/pkg/adapters"
"github.com/weaveworks/weave-gitops/cmd/gitops/beta"
"github.com/weaveworks/weave-gitops/cmd/gitops/check"
"github.com/weaveworks/weave-gitops/cmd/gitops/config"
"github.com/weaveworks/weave-gitops/cmd/gitops/docs"
Expand Down Expand Up @@ -131,14 +129,12 @@ func Command(client *adapters.HTTPClient) *cobra.Command {
rootCmd.AddCommand(version.Cmd)
rootCmd.AddCommand(get.Command(options, client))
rootCmd.AddCommand(add.Command(options, client))
rootCmd.AddCommand(remove.RemoveCommand(options))
rootCmd.AddCommand(create.Command())
rootCmd.AddCommand(update.Command(options, client))
rootCmd.AddCommand(delete.Command(options, client))
rootCmd.AddCommand(upgrade.Cmd)
rootCmd.AddCommand(docs.Cmd)
rootCmd.AddCommand(check.Cmd)
rootCmd.AddCommand(beta.GetCommand(options))
rootCmd.AddCommand(set.SetCommand(options))
rootCmd.AddCommand(generate.Command())
rootCmd.AddCommand(bootstrap.Command(options))
Expand Down
Loading