clean up redundant conditiontype OutOfDisk
Kubernetes-commit: e94d7b3802abe4ad7086551b91b2801ccee606c2
This commit is contained in:
parent
b298bda0c2
commit
d5c0852e40
|
@ -55,7 +55,7 @@ type PodStatus struct {
|
||||||
// A human readable message indicating details about why the pod is in this state.
|
// A human readable message indicating details about why the pod is in this state.
|
||||||
// +optional
|
// +optional
|
||||||
Message string
|
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
|
// +optional
|
||||||
Reason string
|
Reason string
|
||||||
|
|
||||||
|
|
|
@ -190,7 +190,7 @@ message PodStatus {
|
||||||
optional string message = 3;
|
optional string message = 3;
|
||||||
|
|
||||||
// A brief CamelCase message indicating details about why the pod is in this state.
|
// A brief CamelCase message indicating details about why the pod is in this state.
|
||||||
// e.g. 'OutOfDisk'
|
// e.g. 'DiskPressure'
|
||||||
// +optional
|
// +optional
|
||||||
optional string reason = 4;
|
optional string reason = 4;
|
||||||
|
|
||||||
|
|
|
@ -66,7 +66,7 @@ type PodStatus struct {
|
||||||
// +optional
|
// +optional
|
||||||
Message string `json:"message,omitempty" protobuf:"bytes,3,opt,name=message"`
|
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.
|
// A brief CamelCase message indicating details about why the pod is in this state.
|
||||||
// e.g. 'OutOfDisk'
|
// e.g. 'DiskPressure'
|
||||||
// +optional
|
// +optional
|
||||||
Reason string `json:"reason,omitempty" protobuf:"bytes,4,opt,name=reason"`
|
Reason string `json:"reason,omitempty" protobuf:"bytes,4,opt,name=reason"`
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue