Settings:
export KUBERNETES_BRANCH="release-1.10"
export CLIENT_VERSION="0.1.0a1"
export PACKAGE_NAME="client"
33 lines
1.4 KiB
Go
33 lines
1.4 KiB
Go
/*
|
|
* Kubernetes
|
|
*
|
|
* No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
|
|
*
|
|
* API version: v1.10.0
|
|
* Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git)
|
|
*/
|
|
|
|
package client
|
|
|
|
// ReplicationControllerStatus represents the current status of a replication controller.
|
|
type V1ReplicationControllerStatus struct {
|
|
|
|
// The number of available replicas (ready for at least minReadySeconds) for this replication controller.
|
|
AvailableReplicas int32 `json:"availableReplicas,omitempty"`
|
|
|
|
// Represents the latest available observations of a replication controller's current state.
|
|
Conditions []V1ReplicationControllerCondition `json:"conditions,omitempty"`
|
|
|
|
// The number of pods that have labels matching the labels of the pod template of the replication controller.
|
|
FullyLabeledReplicas int32 `json:"fullyLabeledReplicas,omitempty"`
|
|
|
|
// ObservedGeneration reflects the generation of the most recently observed replication controller.
|
|
ObservedGeneration int64 `json:"observedGeneration,omitempty"`
|
|
|
|
// The number of ready replicas for this replication controller.
|
|
ReadyReplicas int32 `json:"readyReplicas,omitempty"`
|
|
|
|
// Replicas is the most recently oberved number of replicas. More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller#what-is-a-replicationcontroller
|
|
Replicas int32 `json:"replicas"`
|
|
}
|