Skip to content

Commit 1bf7cb7

Browse files
authored
Update default busola ports (#2834)
1 parent 6e8f01b commit 1bf7cb7

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

docs/user/gen-docs/kyma_dashboard.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ kyma dashboard <command> [flags]
2121

2222
```text
2323
--container-name string Specifies the name of the local container. (default "kyma-dashboard")
24-
-p, --port string Specifies the port on which the local dashboard will be exposed. (default "3001")
24+
-p, --port string Specifies the port on which the local dashboard will be exposed. (default "8000")
2525
-v, --verbose Enables verbose output with detailed logs.
2626
--context string The name of the kubeconfig context to use
2727
-h, --help Help for the command

docs/user/gen-docs/kyma_dashboard_start.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ kyma dashboard start [flags]
1515
```text
1616
--container-name string Specify the name of the local container. (default "kyma-dashboard")
1717
-o, --open Specify if the browser should open after executing the command.
18-
-p, --port string Specify the port on which the local dashboard will be exposed. (default "3001")
18+
-p, --port string Specify the port on which the local dashboard will be exposed. (default "8000")
1919
-v, --verbose Enable verbose output with detailed logs.
2020
--context string The name of the kubeconfig context to use
2121
-h, --help Help for the command

internal/cmd/dashboard/dashboard.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ func NewDashboardCMD(kymaConfig *cmdcommon.KymaConfig) *cobra.Command {
2727
clierror.Check(runDashboard(&cfg))
2828
}}
2929

30-
cmd.Flags().StringVarP(&cfg.port, "port", "p", "3001", `Specifies the port on which the local dashboard will be exposed.`)
30+
cmd.Flags().StringVarP(&cfg.port, "port", "p", "8000", `Specifies the port on which the local dashboard will be exposed.`)
3131
cmd.Flags().StringVar(&cfg.containerName, "container-name", "kyma-dashboard", `Specifies the name of the local container.`)
3232
cmd.Flags().BoolVarP(&cfg.verbose, "verbose", "v", true, `Enables verbose output with detailed logs.`)
3333

internal/cmd/dashboard/start.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ func NewDashboardStartCMD(kymaConfig *cmdcommon.KymaConfig) *cobra.Command {
2828
clierror.Check(runDashboardStart(&cfg))
2929
}}
3030

31-
cmd.Flags().StringVarP(&cfg.port, "port", "p", "3001", `Specify the port on which the local dashboard will be exposed.`)
31+
cmd.Flags().StringVarP(&cfg.port, "port", "p", "8000", `Specify the port on which the local dashboard will be exposed.`)
3232
cmd.Flags().StringVar(&cfg.containerName, "container-name", "kyma-dashboard", `Specify the name of the local container.`)
3333
cmd.Flags().BoolVarP(&cfg.verbose, "verbose", "v", true, `Enable verbose output with detailed logs.`)
3434
cmd.Flags().BoolVarP(&cfg.open, "open", "o", false, `Specify if the browser should open after executing the command.`)

0 commit comments

Comments
 (0)