mirror of
https://github.com/k3s-io/kubernetes.git
synced 2026-01-04 23:17:50 +00:00
Merge pull request #33905 from kargakis/replica-set-conditions
Automatic merge from submit-queue Replica set conditions API Partially addresses https://github.com/kubernetes/kubernetes/issues/32863 @kubernetes/sig-apps
This commit is contained in:
@@ -28176,6 +28176,39 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"v1.ReplicationControllerCondition": {
|
||||
"description": "ReplicationControllerCondition describes the state of a replication controller at a certain point.",
|
||||
"required": [
|
||||
"type",
|
||||
"status"
|
||||
],
|
||||
"properties": {
|
||||
"lastProbeTime": {
|
||||
"description": "Last time we probed the condition.",
|
||||
"$ref": "#/definitions/unversioned.Time"
|
||||
},
|
||||
"lastTransitionTime": {
|
||||
"description": "The last time the condition transitioned from one status to another.",
|
||||
"$ref": "#/definitions/unversioned.Time"
|
||||
},
|
||||
"message": {
|
||||
"description": "A human readable message indicating details about the transition.",
|
||||
"type": "string"
|
||||
},
|
||||
"reason": {
|
||||
"description": "The reason for the condition's last transition.",
|
||||
"type": "string"
|
||||
},
|
||||
"status": {
|
||||
"description": "Status of the condition, one of True, False, Unknown.",
|
||||
"type": "string"
|
||||
},
|
||||
"type": {
|
||||
"description": "Type of replication controller condition.",
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
},
|
||||
"v1.ReplicationControllerList": {
|
||||
"description": "ReplicationControllerList is a collection of replication controllers.",
|
||||
"required": [
|
||||
@@ -28232,6 +28265,13 @@
|
||||
"type": "integer",
|
||||
"format": "int32"
|
||||
},
|
||||
"conditions": {
|
||||
"description": "Represents the latest available observations of a replication controller's current state.",
|
||||
"type": "array",
|
||||
"items": {
|
||||
"$ref": "#/definitions/v1.ReplicationControllerCondition"
|
||||
}
|
||||
},
|
||||
"fullyLabeledReplicas": {
|
||||
"description": "The number of pods that have labels matching the labels of the pod template of the replication controller.",
|
||||
"type": "integer",
|
||||
@@ -30052,6 +30092,39 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"v1beta1.ReplicaSetCondition": {
|
||||
"description": "ReplicaSetCondition describes the state of a replica set at a certain point.",
|
||||
"required": [
|
||||
"type",
|
||||
"status"
|
||||
],
|
||||
"properties": {
|
||||
"lastProbeTime": {
|
||||
"description": "Last time we probed the condition.",
|
||||
"$ref": "#/definitions/unversioned.Time"
|
||||
},
|
||||
"lastTransitionTime": {
|
||||
"description": "The last time the condition transitioned from one status to another.",
|
||||
"$ref": "#/definitions/unversioned.Time"
|
||||
},
|
||||
"message": {
|
||||
"description": "A human readable message indicating details about the transition.",
|
||||
"type": "string"
|
||||
},
|
||||
"reason": {
|
||||
"description": "The reason for the condition's last transition.",
|
||||
"type": "string"
|
||||
},
|
||||
"status": {
|
||||
"description": "Status of the condition, one of True, False, Unknown.",
|
||||
"type": "string"
|
||||
},
|
||||
"type": {
|
||||
"description": "Type of replica set condition.",
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
},
|
||||
"v1beta1.ReplicaSetList": {
|
||||
"description": "ReplicaSetList is a collection of ReplicaSets.",
|
||||
"required": [
|
||||
@@ -30105,6 +30178,13 @@
|
||||
"type": "integer",
|
||||
"format": "int32"
|
||||
},
|
||||
"conditions": {
|
||||
"description": "Represents the latest available observations of a replica set's current state.",
|
||||
"type": "array",
|
||||
"items": {
|
||||
"$ref": "#/definitions/v1beta1.ReplicaSetCondition"
|
||||
}
|
||||
},
|
||||
"fullyLabeledReplicas": {
|
||||
"description": "The number of pods that have labels matching the labels of the pod template of the replicaset.",
|
||||
"type": "integer",
|
||||
|
||||
@@ -14679,6 +14679,39 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"v1.ReplicationControllerCondition": {
|
||||
"description": "ReplicationControllerCondition describes the state of a replication controller at a certain point.",
|
||||
"required": [
|
||||
"type",
|
||||
"status"
|
||||
],
|
||||
"properties": {
|
||||
"lastProbeTime": {
|
||||
"description": "Last time we probed the condition.",
|
||||
"$ref": "#/definitions/unversioned.Time"
|
||||
},
|
||||
"lastTransitionTime": {
|
||||
"description": "The last time the condition transitioned from one status to another.",
|
||||
"$ref": "#/definitions/unversioned.Time"
|
||||
},
|
||||
"message": {
|
||||
"description": "A human readable message indicating details about the transition.",
|
||||
"type": "string"
|
||||
},
|
||||
"reason": {
|
||||
"description": "The reason for the condition's last transition.",
|
||||
"type": "string"
|
||||
},
|
||||
"status": {
|
||||
"description": "Status of the condition, one of True, False, Unknown.",
|
||||
"type": "string"
|
||||
},
|
||||
"type": {
|
||||
"description": "Type of replication controller condition.",
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
},
|
||||
"v1.ReplicationControllerList": {
|
||||
"description": "ReplicationControllerList is a collection of replication controllers.",
|
||||
"required": [
|
||||
@@ -14735,6 +14768,13 @@
|
||||
"type": "integer",
|
||||
"format": "int32"
|
||||
},
|
||||
"conditions": {
|
||||
"description": "Represents the latest available observations of a replication controller's current state.",
|
||||
"type": "array",
|
||||
"items": {
|
||||
"$ref": "#/definitions/v1.ReplicationControllerCondition"
|
||||
}
|
||||
},
|
||||
"fullyLabeledReplicas": {
|
||||
"description": "The number of pods that have labels matching the labels of the pod template of the replication controller.",
|
||||
"type": "integer",
|
||||
|
||||
@@ -7798,6 +7798,39 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"v1beta1.ReplicaSetCondition": {
|
||||
"description": "ReplicaSetCondition describes the state of a replica set at a certain point.",
|
||||
"required": [
|
||||
"type",
|
||||
"status"
|
||||
],
|
||||
"properties": {
|
||||
"lastProbeTime": {
|
||||
"description": "Last time we probed the condition.",
|
||||
"$ref": "#/definitions/unversioned.Time"
|
||||
},
|
||||
"lastTransitionTime": {
|
||||
"description": "The last time the condition transitioned from one status to another.",
|
||||
"$ref": "#/definitions/unversioned.Time"
|
||||
},
|
||||
"message": {
|
||||
"description": "A human readable message indicating details about the transition.",
|
||||
"type": "string"
|
||||
},
|
||||
"reason": {
|
||||
"description": "The reason for the condition's last transition.",
|
||||
"type": "string"
|
||||
},
|
||||
"status": {
|
||||
"description": "Status of the condition, one of True, False, Unknown.",
|
||||
"type": "string"
|
||||
},
|
||||
"type": {
|
||||
"description": "Type of replica set condition.",
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
},
|
||||
"v1beta1.ReplicaSetList": {
|
||||
"description": "ReplicaSetList is a collection of ReplicaSets.",
|
||||
"required": [
|
||||
@@ -7851,6 +7884,13 @@
|
||||
"type": "integer",
|
||||
"format": "int32"
|
||||
},
|
||||
"conditions": {
|
||||
"description": "Represents the latest available observations of a replica set's current state.",
|
||||
"type": "array",
|
||||
"items": {
|
||||
"$ref": "#/definitions/v1beta1.ReplicaSetCondition"
|
||||
}
|
||||
},
|
||||
"fullyLabeledReplicas": {
|
||||
"description": "The number of pods that have labels matching the labels of the pod template of the replicaset.",
|
||||
"type": "integer",
|
||||
|
||||
Reference in New Issue
Block a user