Documentation ¶
Index ¶
- Variables
- func ConfigDashboardAdminCmd(baseCmd *cobra.Command)
- func ConfigDashboardGrafanaCmd(baseCmd *cobra.Command)
- func ConfigDashboardNacosCmd(baseCmd *cobra.Command)
- func ConfigDashboardPrometheusCmd(baseCmd *cobra.Command)
- func ConfigDashboardSkywalkingCmd(baseCmd *cobra.Command)
- func ConfigDashboardZipkinCmd(baseCmd *cobra.Command)
- func ConfigManifestDiffCmd(baseCmd *cobra.Command)
- func ConfigManifestGenerateCmd(baseCmd *cobra.Command)
- func ConfigManifestInstallCmd(baseCmd *cobra.Command)
- func ConfigManifestUninstallCmd(baseCmd *cobra.Command)
- func ConfigProfileDiffCmd(baseCmd *cobra.Command)
- func ConfigProfileListCmd(baseCmd *cobra.Command)
- type DashboardCommonArgs
- type ManifestDiffArgs
- type ManifestGenerateArgs
- type ManifestInstallArgs
- type ManifestUninstallArgs
- type ProfileDiffArgs
- type ProfileListArgs
Constants ¶
This section is empty.
Variables ¶
View Source
var ( // TestInstallFlag and TestCli are uses for black box testing TestInstallFlag bool TestCli client.Client )
View Source
var ( // todo: think about a efficient way to change selectors and ports when yaml files change // ports are coming from /deploy/charts and /deploy/kubernetes ComponentPortMap = map[operator.ComponentName]int{ operator.Admin: 8080, operator.Grafana: 3000, operator.Nacos: 8848, operator.Prometheus: 9090, operator.Skywalking: 8080, operator.Zipkin: 9411, } // selectors are coming from /deploy/charts and /deploy/kubernetes ComponentSelectorMap = map[operator.ComponentName]string{ operator.Admin: "app.kubernetes.io/name=dubbo-admin", operator.Grafana: "app.kubernetes.io/name=grafana", operator.Nacos: "app.kubernetes.io/name=nacos", operator.Prometheus: "app=prometheus", operator.Skywalking: "app=skywalking, component=ui", operator.Zipkin: "app.kubernetes.io/name=zipkin", } )
Functions ¶
func ConfigDashboardAdminCmd ¶
func ConfigDashboardNacosCmd ¶
func ConfigManifestDiffCmd ¶
func ConfigProfileDiffCmd ¶
func ConfigProfileListCmd ¶
Types ¶
type DashboardCommonArgs ¶
type ManifestDiffArgs ¶
type ManifestDiffArgs struct {
CompareDir bool
}
type ManifestGenerateArgs ¶
type ManifestInstallArgs ¶
type ManifestInstallArgs struct { ManifestGenerateArgs KubeConfigPath string // selected cluster info of kubeconfig Context string }
type ManifestUninstallArgs ¶
type ManifestUninstallArgs struct { ManifestGenerateArgs KubeConfigPath string // selected cluster info of kubeconfig Context string }
type ProfileDiffArgs ¶
type ProfileDiffArgs struct {
ProfilesPath string
}
type ProfileListArgs ¶
type ProfileListArgs struct {
ProfilesPath string
}
Click to show internal directories.
Click to hide internal directories.