ReplicationController

ReplicationController

apiVersion: v1
import "k8s.io/api/core/v1"

ReplicationController

ReplicationController represents the configuration of a replication controller.

ReplicationControllerSpec

ReplicationControllerSpec is the specification of a replication controller.

ReplicationControllerStatus

ReplicationControllerStatus represents the current status of a replication controller.

  • replicas (int32), required
    Replicas is the most recently oberved number of replicas. More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller#what-is-a-replicationcontroller
  • availableReplicas (int32)
    The number of available replicas (ready for at least minReadySeconds) for this replication controller.
  • readyReplicas (int32)
    The number of ready replicas for this replication controller.
  • fullyLabeledReplicas (int32)
    The number of pods that have labels matching the labels of the pod template of the replication controller.
  • conditions ([]ReplicationControllerCondition)
    Patch strategy: merge on key type
    Represents the latest available observations of a replication controller’s current state.
    ReplicationControllerCondition describes the state of a replication controller at a certain point.
    • conditions.status (string), required
      Status of the condition, one of True, False, Unknown.
    • conditions.type (string), required
      Type of replication controller condition.
    • conditions.lastTransitionTime (Time)
      The last time the condition transitioned from one status to another.
      Time is a wrapper around time.Time which supports correct marshaling to YAML and JSON. Wrappers are provided for many of the factory methods that the time package offers.
    • conditions.message (string)
      A human readable message indicating details about the transition.
    • conditions.reason (string)
      The reason for the condition’s last transition.
  • observedGeneration (int64)
    ObservedGeneration reflects the generation of the most recently observed replication controller.

ReplicationControllerList

ReplicationControllerList is a collection of replication controllers.

Operations

get read the specified ReplicationController

HTTP Request

GET /api/v1/namespaces/{namespace}/replicationcontrollers/{name}

Parameters
  • {name} (string), required
    name of the ReplicationController
  • {namespace} (string), required
    namespace
  • ?pretty (string)
    pretty
Response

200 (ReplicationController): OK
401: Unauthorized

get read status of the specified ReplicationController

HTTP Request

GET /api/v1/namespaces/{namespace}/replicationcontrollers/{name}/status

Parameters
  • {name} (string), required
    name of the ReplicationController
  • {namespace} (string), required
    namespace
  • ?pretty (string)
    pretty
Response

200 (ReplicationController): OK
401: Unauthorized

list list or watch objects of kind ReplicationController

HTTP Request

GET /api/v1/namespaces/{namespace}/replicationcontrollers

Parameters
Response

200 (ReplicationControllerList): OK
401: Unauthorized

list list or watch objects of kind ReplicationController

HTTP Request

GET /api/v1/replicationcontrollers

Parameters
Response

200 (ReplicationControllerList): OK
401: Unauthorized

create create a ReplicationController

HTTP Request

POST /api/v1/namespaces/{namespace}/replicationcontrollers

Parameters
Response

200 (ReplicationController): OK
201 (ReplicationController): Created
202 (ReplicationController): Accepted
401: Unauthorized

update replace the specified ReplicationController

HTTP Request

PUT /api/v1/namespaces/{namespace}/replicationcontrollers/{name}

Parameters
Response

200 (ReplicationController): OK
201 (ReplicationController): Created
401: Unauthorized

update replace status of the specified ReplicationController

HTTP Request

PUT /api/v1/namespaces/{namespace}/replicationcontrollers/{name}/status

Parameters
Response

200 (ReplicationController): OK
201 (ReplicationController): Created
401: Unauthorized

patch partially update the specified ReplicationController

HTTP Request

PATCH /api/v1/namespaces/{namespace}/replicationcontrollers/{name}

Parameters
  • {name} (string), required
    name of the ReplicationController

  • {namespace} (string), required
    namespace

  • body (Patch), required

  • ?dryRun (string)
    dryRun

  • ?fieldManager (string)
    fieldManager

  • ?force (boolean)
    force

  • ?pretty (string)
    pretty

Response

200 (ReplicationController): OK
401: Unauthorized

patch partially update status of the specified ReplicationController

HTTP Request

PATCH /api/v1/namespaces/{namespace}/replicationcontrollers/{name}/status

Parameters
  • {name} (string), required
    name of the ReplicationController

  • {namespace} (string), required
    namespace

  • body (Patch), required

  • ?dryRun (string)
    dryRun

  • ?fieldManager (string)
    fieldManager

  • ?force (boolean)
    force

  • ?pretty (string)
    pretty

Response

200 (ReplicationController): OK
401: Unauthorized

delete delete a ReplicationController

HTTP Request

DELETE /api/v1/namespaces/{namespace}/replicationcontrollers/{name}

Parameters
Response

200 (Status): OK
202 (Status): Accepted
401: Unauthorized

deletecollection delete collection of ReplicationController

HTTP Request

DELETE /api/v1/namespaces/{namespace}/replicationcontrollers

Parameters
Response

200 (Status): OK
401: Unauthorized