diff --git a/pkg/apis/example/types.go b/pkg/apis/example/types.go index 243c1c033..2a2861cdb 100644 --- a/pkg/apis/example/types.go +++ b/pkg/apis/example/types.go @@ -55,7 +55,7 @@ type PodStatus struct { // A human readable message indicating details about why the pod is in this state. // +optional Message string - // A brief CamelCase message indicating details about why the pod is in this state. e.g. 'OutOfDisk' + // A brief CamelCase message indicating details about why the pod is in this state. e.g. 'DiskPressure' // +optional Reason string diff --git a/pkg/apis/example/v1/generated.proto b/pkg/apis/example/v1/generated.proto index 821f82537..d6442e97d 100644 --- a/pkg/apis/example/v1/generated.proto +++ b/pkg/apis/example/v1/generated.proto @@ -190,7 +190,7 @@ message PodStatus { optional string message = 3; // A brief CamelCase message indicating details about why the pod is in this state. - // e.g. 'OutOfDisk' + // e.g. 'DiskPressure' // +optional optional string reason = 4; diff --git a/pkg/apis/example/v1/types.go b/pkg/apis/example/v1/types.go index 06c3f9f88..1abc43f16 100644 --- a/pkg/apis/example/v1/types.go +++ b/pkg/apis/example/v1/types.go @@ -66,7 +66,7 @@ type PodStatus struct { // +optional Message string `json:"message,omitempty" protobuf:"bytes,3,opt,name=message"` // A brief CamelCase message indicating details about why the pod is in this state. - // e.g. 'OutOfDisk' + // e.g. 'DiskPressure' // +optional Reason string `json:"reason,omitempty" protobuf:"bytes,4,opt,name=reason"`