File tree Expand file tree Collapse file tree 1 file changed +7
-8
lines changed
docs/proposals/1374-multi-cluster-inference Expand file tree Collapse file tree 1 file changed +7
-8
lines changed Original file line number Diff line number Diff 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
477476type HealthEndpoint struct {
You can’t perform that action at this time.
0 commit comments