Skip to content

Commit bb79145

Browse files
committed
Updated the flag names
1 parent 89f3641 commit bb79145

File tree

6 files changed

+64
-64
lines changed

6 files changed

+64
-64
lines changed

cmd/epp/main.go

+17-17
Original file line numberDiff line numberDiff line change
@@ -64,13 +64,13 @@ var (
6464
"The port used for gRPC liveness and readiness probes")
6565
metricsPort = flag.Int(
6666
"metricsPort", 9090, "The metrics port")
67-
targetEndpointKey = flag.String(
68-
"targetEndpointKey",
69-
runserver.DefaultTargetEndpointKey,
67+
destinationEndpointHintKey = flag.String(
68+
"destinationEndpointHintKey",
69+
runserver.DefaultDestinationEndpointHintKey,
7070
"Header and response metadata key used by Envoy to route to the appropriate pod. This must match Envoy configuration.")
71-
targetEndpointOuterMetadataKey = flag.String(
72-
"TargetEndpointOuterMetadataKey",
73-
runserver.DefaultTargetEndpointOuterMetadataKey,
71+
destinationEndpointHintMetadataNamespace = flag.String(
72+
"DestinationEndpointHintMetadataNamespace",
73+
runserver.DefaultDestinationEndpointHintMetadataNamespace,
7474
"The key for the outer namespace struct in the metadata field of the extproc response that is used to wrap the"+
7575
"target endpoint. If not set, then an outer namespace struct should not be created.")
7676
poolName = flag.String(
@@ -150,17 +150,17 @@ func run() error {
150150
datastore := datastore.NewDatastore()
151151
provider := backend.NewProvider(&vllm.PodMetricsClientImpl{}, datastore)
152152
serverRunner := &runserver.ExtProcServerRunner{
153-
GrpcPort: *grpcPort,
154-
TargetEndpointOuterMetadataKey: *targetEndpointOuterMetadataKey,
155-
TargetEndpointKey: *targetEndpointKey,
156-
PoolName: *poolName,
157-
PoolNamespace: *poolNamespace,
158-
RefreshMetricsInterval: *refreshMetricsInterval,
159-
RefreshPrometheusMetricsInterval: *refreshPrometheusMetricsInterval,
160-
Datastore: datastore,
161-
SecureServing: *secureServing,
162-
CertPath: *certPath,
163-
Provider: provider,
153+
GrpcPort: *grpcPort,
154+
DestinationEndpointHintMetadataNamespace: *destinationEndpointHintMetadataNamespace,
155+
DestinationEndpointHintKey: *destinationEndpointHintKey,
156+
PoolName: *poolName,
157+
PoolNamespace: *poolNamespace,
158+
RefreshMetricsInterval: *refreshMetricsInterval,
159+
RefreshPrometheusMetricsInterval: *refreshPrometheusMetricsInterval,
160+
Datastore: datastore,
161+
SecureServing: *secureServing,
162+
CertPath: *certPath,
163+
Provider: provider,
164164
}
165165
if err := serverRunner.SetupWithManager(mgr); err != nil {
166166
setupLog.Error(err, "Failed to setup ext-proc server")

docs/proposals/003-endpoint-picker-protocol/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ dynamicMetadata: {
2424
"x-gateway-destination-endpoint": <ip:port>"
2525
}
2626
}
27-
27+
```
2828
2929
Note:
3030
- If the EPP did not communicate the server endpoint via these two methods, it MUST return an error.

pkg/epp/handlers/request.go

+4-4
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ func (s *Server) HandleRequestBody(
119119
headers := []*configPb.HeaderValueOption{
120120
{
121121
Header: &configPb.HeaderValue{
122-
Key: s.targetEndpointKey,
122+
Key: s.destinationEndpointHintKey,
123123
RawValue: []byte(endpoint),
124124
},
125125
},
@@ -139,19 +139,19 @@ func (s *Server) HandleRequestBody(
139139

140140
targetEndpointValue := &structpb.Struct{
141141
Fields: map[string]*structpb.Value{
142-
s.targetEndpointKey: {
142+
s.destinationEndpointHintKey: {
143143
Kind: &structpb.Value_StringValue{
144144
StringValue: endpoint,
145145
},
146146
},
147147
},
148148
}
149149
dynamicMetadata := targetEndpointValue
150-
if s.targetEndpointOuterMetadataKey != "" {
150+
if s.destinationEndpointHintMetadataNamespace != "" {
151151
// If a namespace is defined, wrap the selected endpoint with that.
152152
dynamicMetadata = &structpb.Struct{
153153
Fields: map[string]*structpb.Value{
154-
s.targetEndpointOuterMetadataKey: {
154+
s.destinationEndpointHintMetadataNamespace: {
155155
Kind: &structpb.Value_StructValue{
156156
StructValue: targetEndpointValue,
157157
},

pkg/epp/handlers/server.go

+8-8
Original file line numberDiff line numberDiff line change
@@ -34,12 +34,12 @@ import (
3434
logutil "sigs.k8s.io/gateway-api-inference-extension/pkg/epp/util/logging"
3535
)
3636

37-
func NewServer(scheduler Scheduler, targetEndpointOuterMetadataKey, targetEndpointKey string, datastore datastore.Datastore) *Server {
37+
func NewServer(scheduler Scheduler, destinationEndpointHintMetadataNamespace, destinationEndpointHintKey string, datastore datastore.Datastore) *Server {
3838
return &Server{
39-
scheduler: scheduler,
40-
targetEndpointOuterMetadataKey: targetEndpointOuterMetadataKey,
41-
targetEndpointKey: targetEndpointKey,
42-
datastore: datastore,
39+
scheduler: scheduler,
40+
destinationEndpointHintMetadataNamespace: destinationEndpointHintMetadataNamespace,
41+
destinationEndpointHintKey: destinationEndpointHintKey,
42+
datastore: datastore,
4343
}
4444
}
4545

@@ -49,11 +49,11 @@ type Server struct {
4949
scheduler Scheduler
5050
// The key of the header to specify the target pod address. This value needs to match Envoy
5151
// configuration.
52-
targetEndpointKey string
52+
destinationEndpointHintKey string
5353
// The key acting as the outer namespace struct in the metadata extproc response to communicate
5454
// back the picked endpoints.
55-
targetEndpointOuterMetadataKey string
56-
datastore datastore.Datastore
55+
destinationEndpointHintMetadataNamespace string
56+
datastore datastore.Datastore
5757
}
5858

5959
type Scheduler interface {

pkg/epp/server/runserver.go

+28-28
Original file line numberDiff line numberDiff line change
@@ -45,41 +45,41 @@ import (
4545

4646
// ExtProcServerRunner provides methods to manage an external process server.
4747
type ExtProcServerRunner struct {
48-
GrpcPort int
49-
TargetEndpointOuterMetadataKey string
50-
TargetEndpointKey string
51-
PoolName string
52-
PoolNamespace string
53-
RefreshMetricsInterval time.Duration
54-
RefreshPrometheusMetricsInterval time.Duration
55-
Datastore datastore.Datastore
56-
Provider *backend.Provider
57-
SecureServing bool
58-
CertPath string
48+
GrpcPort int
49+
DestinationEndpointHintMetadataNamespace string
50+
DestinationEndpointHintKey string
51+
PoolName string
52+
PoolNamespace string
53+
RefreshMetricsInterval time.Duration
54+
RefreshPrometheusMetricsInterval time.Duration
55+
Datastore datastore.Datastore
56+
Provider *backend.Provider
57+
SecureServing bool
58+
CertPath string
5959
}
6060

6161
// Default values for CLI flags in main
6262
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
7171
)
7272

7373
func NewDefaultExtProcServerRunner() *ExtProcServerRunner {
7474
return &ExtProcServerRunner{
75-
GrpcPort: DefaultGrpcPort,
76-
TargetEndpointKey: DefaultTargetEndpointKey,
77-
TargetEndpointOuterMetadataKey: DefaultTargetEndpointOuterMetadataKey,
78-
PoolName: DefaultPoolName,
79-
PoolNamespace: DefaultPoolNamespace,
80-
RefreshMetricsInterval: DefaultRefreshMetricsInterval,
81-
RefreshPrometheusMetricsInterval: DefaultRefreshPrometheusMetricsInterval,
82-
SecureServing: DefaultSecureServing,
75+
GrpcPort: DefaultGrpcPort,
76+
DestinationEndpointHintKey: DefaultDestinationEndpointHintKey,
77+
DestinationEndpointHintMetadataNamespace: DefaultDestinationEndpointHintMetadataNamespace,
78+
PoolName: DefaultPoolName,
79+
PoolNamespace: DefaultPoolNamespace,
80+
RefreshMetricsInterval: DefaultRefreshMetricsInterval,
81+
RefreshPrometheusMetricsInterval: DefaultRefreshPrometheusMetricsInterval,
82+
SecureServing: DefaultSecureServing,
8383
// Datastore can be assigned later.
8484
}
8585
}
@@ -159,7 +159,7 @@ func (r *ExtProcServerRunner) AsRunnable(logger logr.Logger) manager.Runnable {
159159
}
160160
extProcPb.RegisterExternalProcessorServer(
161161
srv,
162-
handlers.NewServer(scheduling.NewScheduler(r.Datastore), r.TargetEndpointOuterMetadataKey, r.TargetEndpointKey, r.Datastore),
162+
handlers.NewServer(scheduling.NewScheduler(r.Datastore), r.DestinationEndpointHintMetadataNamespace, r.DestinationEndpointHintKey, r.Datastore),
163163
)
164164

165165
// Forward to the gRPC runnable.

test/integration/hermetic_test.go

+6-6
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ func TestKubeInferenceModelRequest(t *testing.T) {
100100
wantHeaders: []*configPb.HeaderValueOption{
101101
{
102102
Header: &configPb.HeaderValue{
103-
Key: runserver.DefaultTargetEndpointKey,
103+
Key: serverRunner.DestinationEndpointHintKey,
104104
RawValue: []byte("address-1:8000"),
105105
},
106106
},
@@ -148,7 +148,7 @@ func TestKubeInferenceModelRequest(t *testing.T) {
148148
wantHeaders: []*configPb.HeaderValueOption{
149149
{
150150
Header: &configPb.HeaderValue{
151-
Key: runserver.DefaultTargetEndpointKey,
151+
Key: serverRunner.DestinationEndpointHintKey,
152152
RawValue: []byte("address-1:8000"),
153153
},
154154
},
@@ -197,7 +197,7 @@ func TestKubeInferenceModelRequest(t *testing.T) {
197197
wantHeaders: []*configPb.HeaderValueOption{
198198
{
199199
Header: &configPb.HeaderValue{
200-
Key: runserver.DefaultTargetEndpointKey,
200+
Key: serverRunner.DestinationEndpointHintKey,
201201
RawValue: []byte("address-2:8000"),
202202
},
203203
},
@@ -288,7 +288,7 @@ func TestKubeInferenceModelRequest(t *testing.T) {
288288
wantHeaders: []*configPb.HeaderValueOption{
289289
{
290290
Header: &configPb.HeaderValue{
291-
Key: runserver.DefaultTargetEndpointKey,
291+
Key: serverRunner.DestinationEndpointHintKey,
292292
RawValue: []byte("address-0:8000"),
293293
},
294294
},
@@ -527,11 +527,11 @@ func readDocuments(fp string) ([][]byte, error) {
527527
func makeMetadata(endpoint string) *structpb.Struct {
528528
return &structpb.Struct{
529529
Fields: map[string]*structpb.Value{
530-
runserver.DefaultTargetEndpointOuterMetadataKey: {
530+
serveRunner.DestinationEndpointHintMetadataNamespace: {
531531
Kind: &structpb.Value_StructValue{
532532
StructValue: &structpb.Struct{
533533
Fields: map[string]*structpb.Value{
534-
runserver.DefaultTargetEndpointKey: {
534+
serveRunner.DestinationEndpointHintKey: {
535535
Kind: &structpb.Value_StringValue{
536536
StringValue: endpoint,
537537
},

0 commit comments

Comments
 (0)