You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: cmd/epp/runner/runner.go
+13-13Lines changed: 13 additions & 13 deletions
Original file line number
Diff line number
Diff line change
@@ -75,18 +75,18 @@ const (
75
75
)
76
76
77
77
var (
78
-
grpcPort=flag.Int("grpc-port", runserver.DefaultGrpcPort, "The gRPC port used for communicating with Envoy proxy")
79
-
grpcHealthPort=flag.Int("grpc-health-port", runserver.DefaultGrpcHealthPort, "The port used for gRPC liveness and readiness probes")
80
-
metricsPort=flag.Int("metrics-port", runserver.DefaultMetricsPort, "The metrics port")
81
-
metricsEndpointAuth=flag.Bool("metrics-endpoint-auth", true, "Enables authentication and authorization of the metrics endpoint")
82
-
enablePprof=flag.Bool("enable-pprof", runserver.DefaultEnablePprof, "Enables pprof handlers. Defaults to true. Set to false to disable pprof handlers.")
83
-
poolName=flag.String("pool-name", runserver.DefaultPoolName, "Name of the InferencePool this Endpoint Picker is associated with.")
84
-
poolGroup=flag.String("pool-group", runserver.DefaultPoolGroup, "group of the InferencePool this Endpoint Picker is associated with.")
85
-
poolNamespace=flag.String("pool-namespace", "", "Namespace of the InferencePool this Endpoint Picker is associated with.")
86
-
logVerbosity=flag.Int("v", logging.DEFAULT, "number for the log level verbosity")
87
-
secureServing=flag.Bool("secure-serving", runserver.DefaultSecureServing, "Enables secure serving. Defaults to true.")
88
-
healthChecking=flag.Bool("health-checking", runserver.DefaultHealthChecking, "Enables health checking")
89
-
certPath=flag.String("cert-path", runserver.DefaultCertPath, "The path to the certificate for secure serving. The certificate and private key files "+
78
+
grpcPort=flag.Int("grpc-port", runserver.DefaultGrpcPort, "The gRPC port used for communicating with Envoy proxy")
79
+
grpcHealthPort=flag.Int("grpc-health-port", runserver.DefaultGrpcHealthPort, "The port used for gRPC liveness and readiness probes")
80
+
metricsPort=flag.Int("metrics-port", runserver.DefaultMetricsPort, "The metrics port")
81
+
metricsEndpointAuth=flag.Bool("metrics-endpoint-auth", true, "Enables authentication and authorization of the metrics endpoint")
82
+
enablePprof=flag.Bool("enable-pprof", runserver.DefaultEnablePprof, "Enables pprof handlers. Defaults to true. Set to false to disable pprof handlers.")
83
+
poolName=flag.String("pool-name", runserver.DefaultPoolName, "Name of the InferencePool this Endpoint Picker is associated with.")
84
+
poolGroup=flag.String("pool-group", runserver.DefaultPoolGroup, "group of the InferencePool this Endpoint Picker is associated with.")
85
+
poolNamespace=flag.String("pool-namespace", "", "Namespace of the InferencePool this Endpoint Picker is associated with.")
86
+
logVerbosity=flag.Int("v", logging.DEFAULT, "number for the log level verbosity")
87
+
secureServing=flag.Bool("secure-serving", runserver.DefaultSecureServing, "Enables secure serving. Defaults to true.")
88
+
healthChecking=flag.Bool("health-checking", runserver.DefaultHealthChecking, "Enables health checking")
89
+
certPath=flag.String("cert-path", runserver.DefaultCertPath, "The path to the certificate for secure serving. The certificate and private key files "+
90
90
"are assumed to be named tls.crt and tls.key, respectively. If not set, and secureServing is enabled, "+
0 commit comments