-
Notifications
You must be signed in to change notification settings - Fork 85
Expand file tree
/
Copy pathroot.go
More file actions
91 lines (80 loc) · 3.54 KB
/
root.go
File metadata and controls
91 lines (80 loc) · 3.54 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
/*
Copyright © 2020 Red Hat, Inc.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package main
import (
"os"
log "github.com/sirupsen/logrus"
"github.com/spf13/cobra"
"github.com/openshift/backplane-cli/cmd/ocm-backplane/accessrequest"
"github.com/openshift/backplane-cli/cmd/ocm-backplane/cloud"
"github.com/openshift/backplane-cli/cmd/ocm-backplane/config"
"github.com/openshift/backplane-cli/cmd/ocm-backplane/console"
"github.com/openshift/backplane-cli/cmd/ocm-backplane/elevate"
healthcheck "github.com/openshift/backplane-cli/cmd/ocm-backplane/healthcheck"
"github.com/openshift/backplane-cli/cmd/ocm-backplane/login"
"github.com/openshift/backplane-cli/cmd/ocm-backplane/logout"
managedjob "github.com/openshift/backplane-cli/cmd/ocm-backplane/managedJob"
"github.com/openshift/backplane-cli/cmd/ocm-backplane/mcp"
"github.com/openshift/backplane-cli/cmd/ocm-backplane/monitoring"
"github.com/openshift/backplane-cli/cmd/ocm-backplane/remediation"
"github.com/openshift/backplane-cli/cmd/ocm-backplane/rw"
"github.com/openshift/backplane-cli/cmd/ocm-backplane/script"
"github.com/openshift/backplane-cli/cmd/ocm-backplane/session"
"github.com/openshift/backplane-cli/cmd/ocm-backplane/status"
testjob "github.com/openshift/backplane-cli/cmd/ocm-backplane/testJob"
"github.com/openshift/backplane-cli/cmd/ocm-backplane/upgrade"
"github.com/openshift/backplane-cli/cmd/ocm-backplane/version"
"github.com/openshift/backplane-cli/pkg/cli/globalflags"
)
// rootCmd represents the base command when called without any subcommands
var rootCmd = &cobra.Command{
Use: "ocm-backplane",
Short: "backplane plugin for OCM",
Long: `This is a binary for backplane plugin.
The current function ocm-backplane provides is to login a cluster,
which get a proxy url from backplane for the target cluster.
After login, users can use oc command to operate the target cluster`,
SilenceErrors: true,
}
// Execute adds all child commands to the root command and sets flags appropriately.
// This is called by main.main(). It only needs to happen once to the rootCmd.
func Execute() {
if err := rootCmd.Execute(); err != nil {
log.Errorln(err.Error())
os.Exit(1)
}
}
func init() {
// Add Verbosity flag for all commands
globalflags.AddVerbosityFlag(rootCmd)
// Register sub-commands
rootCmd.AddCommand(accessrequest.NewAccessRequestCmd())
rootCmd.AddCommand(console.NewConsoleCmd())
rootCmd.AddCommand(config.NewConfigCmd())
rootCmd.AddCommand(cloud.CloudCmd)
rootCmd.AddCommand(elevate.ElevateCmd)
rootCmd.AddCommand(login.LoginCmd)
rootCmd.AddCommand(logout.LogoutCmd)
rootCmd.AddCommand(managedjob.NewManagedJobCmd())
rootCmd.AddCommand(mcp.MCPCmd)
rootCmd.AddCommand(script.NewScriptCmd())
rootCmd.AddCommand(status.StatusCmd)
rootCmd.AddCommand(session.NewCmdSession())
rootCmd.AddCommand(testjob.NewTestJobCommand())
rootCmd.AddCommand(upgrade.UpgradeCmd)
rootCmd.AddCommand(version.VersionCmd)
rootCmd.AddCommand(monitoring.MonitoringCmd)
rootCmd.AddCommand(healthcheck.HealthCheckCmd)
rootCmd.AddCommand(remediation.NewRemediationCmd())
rootCmd.AddCommand(rw.RwCmd)
}