File tree 2 files changed +28
-2
lines changed 2 files changed +28
-2
lines changed Original file line number Diff line number Diff line change @@ -195,7 +195,20 @@ type InferenceModelConditionType string
195
195
type InferenceModelConditionReason string
196
196
197
197
const (
198
- // This condition indicates whether the model is ready for traffic or not, and why.
198
+ // This condition indicates if the model is ready to accept traffic, and if not, why.
199
+ //
200
+ // Possible reasons for this condition to be True are:
201
+ //
202
+ // * "Ready"
203
+ //
204
+ // Possible reasons for this condition to be False are:
205
+ //
206
+ // * "ModelNameInUse"
207
+ //
208
+ // Possible reasons for this condition to be Unknown are:
209
+ //
210
+ // * "Pending"
211
+ //
199
212
ModelConditionReady InferenceModelConditionType = "Ready"
200
213
201
214
// Desired state. Model is ready for serving with no conflicts or issues.
Original file line number Diff line number Diff line change @@ -127,7 +127,20 @@ type InferencePoolConditionType string
127
127
type InferencePoolConditionReason string
128
128
129
129
const (
130
- // This condition indicates whether the pool is ready for traffic or not, and why.
130
+ // This condition indicates if the pool is ready to accept traffic, and if not, why.
131
+ //
132
+ // Possible reasons for this condition to be True are:
133
+ //
134
+ // * "Ready"
135
+ //
136
+ // Possible reasons for this condition to be False are:
137
+ //
138
+ // * "EndpointPickerNotHealthy"
139
+ //
140
+ // Possible reasons for this condition to be Unknown are:
141
+ //
142
+ // * "Pending"
143
+ //
131
144
PoolConditionReady InferencePoolConditionType = "Ready"
132
145
133
146
// Desired state. The pool and its components are initialized and ready for traffic.
You can’t perform that action at this time.
0 commit comments