Skip to content

Commit 27c6c38

Browse files
committed
Makes EPP Port Singular
Signed-off-by: Daneyon Hansen <[email protected]>
1 parent 4d38ca6 commit 27c6c38

File tree

1 file changed

+7
-8
lines changed
  • docs/proposals/1374-multi-cluster-inference

1 file changed

+7
-8
lines changed

docs/proposals/1374-multi-cluster-inference/README.md

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -280,9 +280,8 @@ status:
280280
service:
281281
type: LoadBalancer
282282
addresses:
283-
- 1.2.3.4 # EPP service address (IP or hostname)
284-
ports:
285-
- number: 9002 # EPP ext-proc port
283+
- 1.2.3.4 # EPP service address (IP or hostname)
284+
port: 9002 # EPP ext-proc port
286285
health:
287286
port: 9003
288287
metrics:
@@ -465,13 +464,13 @@ type ServiceImport struct {
465464

466465
// Addresses supports IPs and/or hostnames of the remote service.
467466
//
468-
// +kubebuilder:validation:Optional
469-
Addresses []string `json:"addresses,omitempty"`
467+
// +kubebuilder:validation:Required
468+
Addresses []string `json:"addresses"`
470469

471-
// Ports exposed by the remote service (e.g., 9002 for EPP ext-proc).
470+
// Port is the network port exposed by the remote EPP service.
472471
//
473-
// +kubebuilder:validation:Optional
474-
Ports []Port `json:"ports,omitempty"`
472+
// +kubebuilder:validation:Required
473+
Port Port `json:"port"`
475474
}
476475

477476
type HealthEndpoint struct {

0 commit comments

Comments
 (0)