Skip to content

Commit 9927ff4

Browse files
committed
removed ext-proc suffix
1 parent 11c9130 commit 9927ff4

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

config/manifests/inferencepool.yaml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -8,16 +8,16 @@ spec:
88
selector:
99
app: my-pool
1010
extensionRef:
11-
name: my-pool-epp-ext-proc
11+
name: my-pool-epp
1212
---
1313
apiVersion: v1
1414
kind: Service
1515
metadata:
16-
name: my-pool-epp-ext-proc
16+
name: my-pool-epp
1717
namespace: default
1818
spec:
1919
selector:
20-
app: my-pool-epp-ext-proc
20+
app: my-pool-epp
2121
ports:
2222
- protocol: TCP
2323
port: 9002
@@ -27,19 +27,19 @@ spec:
2727
apiVersion: apps/v1
2828
kind: Deployment
2929
metadata:
30-
name: my-pool-epp-ext-proc
30+
name: my-pool-epp
3131
namespace: default
3232
labels:
33-
app: my-pool-epp-ext-proc
33+
app: my-pool-epp
3434
spec:
3535
replicas: 1
3636
selector:
3737
matchLabels:
38-
app: my-pool-epp-ext-proc
38+
app: my-pool-epp
3939
template:
4040
metadata:
4141
labels:
42-
app: my-pool-epp-ext-proc
42+
app: my-pool-epp
4343
spec:
4444
containers:
4545
- name: epp

test/e2e/epp/e2e_suite_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ const (
6565
// envoyPort is the listener port number of the test envoy proxy.
6666
envoyPort = "8081"
6767
// inferExtName is the name of the inference extension test resources.
68-
inferExtName = "my-pool-epp-ext-proc"
68+
inferExtName = "my-pool-epp"
6969
// clientManifest is the manifest for the client test resources.
7070
clientManifest = "../../testdata/client.yaml"
7171
// modelServerSecretManifest is the manifest for the model server secret resource.

test/testdata/envoy.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ data:
100100
grpc_service:
101101
envoy_grpc:
102102
cluster_name: ext_proc
103-
authority: my-pool-epp-ext-proc.default:9002
103+
authority: my-pool-epp.default:9002
104104
timeout: 10s
105105
processing_mode:
106106
request_header_mode: SEND
@@ -194,7 +194,7 @@ data:
194194
- endpoint:
195195
address:
196196
socket_address:
197-
address: my-pool-epp-ext-proc.default
197+
address: my-pool-epp.default
198198
port_value: 9002
199199
health_status: HEALTHY
200200
load_balancing_weight: 1

0 commit comments

Comments
 (0)