Skip to content

Commit 615c491

Browse files
authored
Merge pull request kubernetes#75858 from danielqsj/crdct
add possible values to CustomResourceDefinitionConditionType
2 parents ef42d82 + 9c772a2 commit 615c491

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

api/openapi-spec/swagger.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/types.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -267,7 +267,7 @@ const (
267267

268268
// CustomResourceDefinitionCondition contains details for the current condition of this pod.
269269
type CustomResourceDefinitionCondition struct {
270-
// Type is the type of the condition.
270+
// Type is the type of the condition. Types include Established, NamesAccepted and Terminating.
271271
Type CustomResourceDefinitionConditionType
272272
// Status is the status of the condition.
273273
// Can be True, False, Unknown.

staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1/generated.proto

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1/types.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -281,7 +281,7 @@ const (
281281

282282
// CustomResourceDefinitionCondition contains details for the current condition of this pod.
283283
type CustomResourceDefinitionCondition struct {
284-
// Type is the type of the condition.
284+
// Type is the type of the condition. Types include Established, NamesAccepted and Terminating.
285285
Type CustomResourceDefinitionConditionType `json:"type" protobuf:"bytes,1,opt,name=type,casttype=CustomResourceDefinitionConditionType"`
286286
// Status is the status of the condition.
287287
// Can be True, False, Unknown.

0 commit comments

Comments
 (0)