Skip to content

Commit e946cda

Browse files
committed
add inline
1 parent 02db190 commit e946cda

File tree

4 files changed

+51
-79
lines changed

4 files changed

+51
-79
lines changed

api/v1alpha1/inferencepool_types.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ type InferencePoolSpec struct {
6262

6363
// EndpointPickerConfig specifies the configuration needed by the proxy to discover and connect to the endpoint
6464
// picker service that picks endpoints for the requests routed to this pool.
65-
EndpointPickerConfig `json:"endpointPickerConfig"`
65+
EndpointPickerConfig `json:",inline"`
6666
}
6767

6868
// EndpointPickerConfig specifies the configuration needed by the proxy to discover and connect to the endpoint picker extension.
@@ -80,7 +80,7 @@ type ExtensionConfig struct {
8080
ExtensionRef ExtensionReference `json:"extensionRef"`
8181

8282
// ExtensionConnection configures the connection between the gateway and the extension.
83-
ExtensionConnection `json:"extensionConnection"`
83+
ExtensionConnection `json:",inline"`
8484
}
8585

8686
// ExtensionReference is a reference to the extension deployment.

client-go/applyconfiguration/api/v1alpha1/extensionconfig.go

+2-9
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

client-go/applyconfiguration/api/v1alpha1/inferencepoolspec.go

+3-10
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

config/crd/bases/inference.networking.x-k8s.io_inferencepools.yaml

+44-58
Original file line numberDiff line numberDiff line change
@@ -39,70 +39,56 @@ spec:
3939
spec:
4040
description: InferencePoolSpec defines the desired state of InferencePool
4141
properties:
42-
endpointPickerConfig:
43-
description: |-
44-
EndpointPickerConfig specifies the configuration needed by the proxy to discover and connect to the endpoint
45-
picker service that picks endpoints for the requests routed to this pool.
42+
extension:
43+
description: Extension configures an endpoint picker as an extension
44+
service.
4645
properties:
47-
extension:
48-
description: Extension configures an endpoint picker as an extension
49-
service.
46+
extensionRef:
47+
description: ExtensionRef is a reference to a service extension.
5048
properties:
51-
extensionConnection:
52-
description: ExtensionConnection configures the connection
53-
between the gateway and the extension.
54-
properties:
55-
failureMode:
56-
default: FailClose
57-
description: |-
58-
Configures how the gateway handles the case when the extension is not responsive.
59-
Defaults to failClose.
60-
enum:
61-
- FailOpen
62-
- FailClose
63-
type: string
64-
type: object
65-
extensionRef:
66-
description: ExtensionRef is a reference to a service extension.
67-
properties:
68-
group:
69-
default: ""
70-
description: |-
71-
Group is the group of the referent.
72-
When unspecified or empty string, core API group is inferred.
73-
type: string
74-
kind:
75-
default: Service
76-
description: |-
77-
Kind is the Kubernetes resource kind of the referent. For example
78-
"Service".
49+
group:
50+
default: ""
51+
description: |-
52+
Group is the group of the referent.
53+
When unspecified or empty string, core API group is inferred.
54+
type: string
55+
kind:
56+
default: Service
57+
description: |-
58+
Kind is the Kubernetes resource kind of the referent. For example
59+
"Service".
7960
80-
Defaults to "Service" when not specified.
61+
Defaults to "Service" when not specified.
8162
82-
ExternalName services can refer to CNAME DNS records that may live
83-
outside of the cluster and as such are difficult to reason about in
84-
terms of conformance. They also may not be safe to forward to (see
85-
CVE-2021-25740 for more information). Implementations MUST NOT
86-
support ExternalName Services.
87-
type: string
88-
name:
89-
description: Name is the name of the referent.
90-
type: string
91-
targetPortNumber:
92-
description: |-
93-
The port number on the pods running the extension. When unspecified, implementations are recommended
94-
to default it to 9002 and the Kind is Service.
95-
format: int32
96-
type: integer
97-
required:
98-
- name
99-
type: object
63+
ExternalName services can refer to CNAME DNS records that may live
64+
outside of the cluster and as such are difficult to reason about in
65+
terms of conformance. They also may not be safe to forward to (see
66+
CVE-2021-25740 for more information). Implementations MUST NOT
67+
support ExternalName Services.
68+
type: string
69+
name:
70+
description: Name is the name of the referent.
71+
type: string
72+
targetPortNumber:
73+
description: |-
74+
The port number on the pods running the extension. When unspecified, implementations are recommended
75+
to default it to 9002 and the Kind is Service.
76+
format: int32
77+
type: integer
10078
required:
101-
- extensionConnection
102-
- extensionRef
79+
- name
10380
type: object
81+
failureMode:
82+
default: FailClose
83+
description: |-
84+
Configures how the gateway handles the case when the extension is not responsive.
85+
Defaults to failClose.
86+
enum:
87+
- FailOpen
88+
- FailClose
89+
type: string
10490
required:
105-
- extension
91+
- extensionRef
10692
type: object
10793
selector:
10894
additionalProperties:
@@ -137,7 +123,7 @@ spec:
137123
minimum: 1
138124
type: integer
139125
required:
140-
- endpointPickerConfig
126+
- extension
141127
- selector
142128
- targetPortNumber
143129
type: object

0 commit comments

Comments
 (0)