Kubernetes-commit: 5f60dcd90bac8e08323e4a0bc50c23d3fcc81f58
This commit is contained in:
ymqytw
2017-04-06 15:56:35 -07:00
committed by Kubernetes Publisher
parent f256b244db
commit f065b8d2f7
4 changed files with 45 additions and 0 deletions

View File

@@ -167,6 +167,8 @@ message DeploymentStatus {
optional int32 unavailableReplicas = 5;
// Represents the latest available observations of a deployment's current state.
// +patchMergeKey=type
// +patchStrategy=merge
repeated DeploymentCondition conditions = 6;
}

View File

@@ -139,6 +139,8 @@ message JobStatus {
// Conditions represent the latest available observations of an object's current state.
// More info: http://kubernetes.io/docs/user-guide/jobs
// +optional
// +patchMergeKey=type
// +patchStrategy=merge
repeated JobCondition conditions = 1;
// StartTime represents time when the job was acknowledged by the Job Manager.

View File

@@ -321,6 +321,8 @@ message DeploymentStatus {
optional int32 unavailableReplicas = 5;
// Represents the latest available observations of a deployment's current state.
// +patchMergeKey=type
// +patchStrategy=merge
repeated DeploymentCondition conditions = 6;
}
@@ -818,6 +820,8 @@ message ReplicaSetStatus {
// Represents the latest available observations of a replica set's current state.
// +optional
// +patchMergeKey=type
// +patchStrategy=merge
repeated ReplicaSetCondition conditions = 6;
}