We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 137a0b4 commit 14763aaCopy full SHA for 14763aa
api/v1/inferencepool_types.go
@@ -130,7 +130,8 @@ type EndpointPickerRef struct {
130
//
131
// +optional
132
// +kubebuilder:default="FailClose"
133
- FailureMode ExtensionFailureMode `json:"failureMode,omitempty"`
+ //nolint:kubeapilinter // ignore kubeapilinter here as we want to use pointer here for optional struct.
134
+ FailureMode *ExtensionFailureMode `json:"failureMode,omitempty"`
135
}
136
137
// ExtensionFailureMode defines the options for how the gateway handles the case when the extension is not
0 commit comments