提交 6bc2c21b 编写于 作者: S Steffen Hanikel 提交者: Piotr Bryk

Added bind-address cli option (#1573)

上级 0bbd01b0
...@@ -25,10 +25,12 @@ import ( ...@@ -25,10 +25,12 @@ import (
"github.com/kubernetes/dashboard/src/app/backend/handler" "github.com/kubernetes/dashboard/src/app/backend/handler"
"github.com/prometheus/client_golang/prometheus" "github.com/prometheus/client_golang/prometheus"
"github.com/spf13/pflag" "github.com/spf13/pflag"
"net"
) )
var ( var (
argPort = pflag.Int("port", 9090, "The port to listen to for incoming HTTP requests") argPort = pflag.Int("port", 9090, "The port to listen to for incoming HTTP requests")
argBindAddress = pflag.IP("bind-address", net.IPv4(0, 0, 0, 0), "The IP address on which to serve the --port (set to 0.0.0.0 for all interfaces).")
argApiserverHost = pflag.String("apiserver-host", "", "The address of the Kubernetes Apiserver "+ argApiserverHost = pflag.String("apiserver-host", "", "The address of the Kubernetes Apiserver "+
"to connect to in the format of protocol://address:port, e.g., "+ "to connect to in the format of protocol://address:port, e.g., "+
"http://localhost:8080. If not specified, the assumption is that the binary runs inside a "+ "http://localhost:8080. If not specified, the assumption is that the binary runs inside a "+
...@@ -84,7 +86,7 @@ func main() { ...@@ -84,7 +86,7 @@ func main() {
// TODO(maciaszczykm): Move to /appConfig.json as it was discussed in #640. // TODO(maciaszczykm): Move to /appConfig.json as it was discussed in #640.
http.Handle("/api/appConfig.json", handler.AppHandler(handler.ConfigHandler)) http.Handle("/api/appConfig.json", handler.AppHandler(handler.ConfigHandler))
http.Handle("/metrics", prometheus.Handler()) http.Handle("/metrics", prometheus.Handler())
log.Print(http.ListenAndServe(fmt.Sprintf(":%d", *argPort), nil)) log.Print(http.ListenAndServe(fmt.Sprintf("%s:%d", *argBindAddress, *argPort), nil))
} }
/** /**
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册