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: pkg/epp/server/runserver.go
+28-28
Original file line number
Diff line number
Diff line change
@@ -45,41 +45,41 @@ import (
45
45
46
46
// ExtProcServerRunner provides methods to manage an external process server.
47
47
typeExtProcServerRunnerstruct {
48
-
GrpcPortint
49
-
TargetEndpointOuterMetadataKeystring
50
-
TargetEndpointKeystring
51
-
PoolNamestring
52
-
PoolNamespacestring
53
-
RefreshMetricsInterval time.Duration
54
-
RefreshPrometheusMetricsInterval time.Duration
55
-
Datastore datastore.Datastore
56
-
Provider*backend.Provider
57
-
SecureServingbool
58
-
CertPathstring
48
+
GrpcPortint
49
+
DestinationEndpointHintMetadataNamespacestring
50
+
DestinationEndpointHintKeystring
51
+
PoolNamestring
52
+
PoolNamespacestring
53
+
RefreshMetricsIntervaltime.Duration
54
+
RefreshPrometheusMetricsIntervaltime.Duration
55
+
Datastoredatastore.Datastore
56
+
Provider*backend.Provider
57
+
SecureServingbool
58
+
CertPathstring
59
59
}
60
60
61
61
// Default values for CLI flags in main
62
62
const (
63
-
DefaultGrpcPort=9002// default for --grpcPort
64
-
DefaultTargetEndpointOuterMetadataKey="gateway-destination-endpoint.dynamic_forwarding.selected_endpoints"// default for --targetEndpointOuterMetadataKey
65
-
DefaultTargetEndpointKey="x-gateway-destination-endpoint"// default for --targetEndpointKey
66
-
DefaultPoolName=""// required but no default
67
-
DefaultPoolNamespace="default"// default for --poolNamespace
68
-
DefaultRefreshMetricsInterval=50*time.Millisecond// default for --refreshMetricsInterval
69
-
DefaultRefreshPrometheusMetricsInterval=5*time.Second// default for --refreshPrometheusMetricsInterval
70
-
DefaultSecureServing=true// default for --secureServing
63
+
DefaultGrpcPort=9002// default for --grpcPort
64
+
DefaultDestinationEndpointHintMetadataNamespace="gateway-destination-endpoint.dynamic_forwarding.selected_endpoints"// default for --destinationEndpointHintMetadataNamespace
65
+
DefaultDestinationEndpointHintKey="x-gateway-destination-endpoint"// default for --destinationEndpointHintKey
66
+
DefaultPoolName=""// required but no default
67
+
DefaultPoolNamespace="default"// default for --poolNamespace
68
+
DefaultRefreshMetricsInterval=50*time.Millisecond// default for --refreshMetricsInterval
69
+
DefaultRefreshPrometheusMetricsInterval=5*time.Second// default for --refreshPrometheusMetricsInterval
70
+
DefaultSecureServing=true// default for --secureServing
0 commit comments