Skip to content

Commit 9942311

Browse files
committed
Updating Condition Type
1 parent 5fab019 commit 9942311

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

api/v1alpha1/inferencemodel_types.go

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ type InferenceModelStatus struct {
178178
//
179179
// Known condition types are:
180180
//
181-
// * "Ready"
181+
// * "Accepted"
182182
//
183183
// +optional
184184
// +listType=map
@@ -195,11 +195,11 @@ type InferenceModelConditionType string
195195
type InferenceModelConditionReason string
196196

197197
const (
198-
// This condition indicates if the model is ready to accept traffic, and if not, why.
198+
// This condition indicates if the model config is accepted, and if not, why.
199199
//
200200
// Possible reasons for this condition to be True are:
201201
//
202-
// * "Ready"
202+
// * "Accepted"
203203
//
204204
// Possible reasons for this condition to be False are:
205205
//
@@ -209,10 +209,10 @@ const (
209209
//
210210
// * "Pending"
211211
//
212-
ModelConditionReady InferenceModelConditionType = "Ready"
212+
ModelConditionReady InferenceModelConditionType = "Accepted"
213213

214-
// Desired state. Model is ready for serving with no conflicts or issues.
215-
ModelReasonReady InferenceModelConditionReason = "Ready"
214+
// Desired state. Model conforms to the state of the pool.
215+
ModelReasonReady InferenceModelConditionReason = "Accepted"
216216

217217
// This reason is used when a given ModelName already exists within the pool.
218218
// Details about naming conflict resolution are on the ModelName field itself.

0 commit comments

Comments
 (0)