diff --git a/cmd/polaris/dashboard.go b/cmd/polaris/dashboard.go index 7d1a4b73..909c7f50 100644 --- a/cmd/polaris/dashboard.go +++ b/cmd/polaris/dashboard.go @@ -32,7 +32,7 @@ var listeningAddress string func init() { rootCmd.AddCommand(dashboardCmd) dashboardCmd.PersistentFlags().IntVarP(&serverPort, "port", "p", 8080, "Port for the dashboard webserver.") - dashboardCmd.PersistentFlags().StringVar(&listeningAddress, "listening-address", "", "Port for the dashboard webserver.") + dashboardCmd.PersistentFlags().StringVar(&listeningAddress, "listening-address", "", "Listening Address for the dashboard webserver.") dashboardCmd.PersistentFlags().StringVar(&basePath, "base-path", "/", "Path on which the dashboard is served.") dashboardCmd.PersistentFlags().StringVar(&loadAuditFile, "load-audit-file", "", "Runs the dashboard with data saved from a past audit.") dashboardCmd.PersistentFlags().StringVar(&auditPath, "audit-path", "", "If specified, audits one or more YAML files instead of a cluster.")