ReplicaSet

ReplicaSet

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

ReplicaSet

ReplicaSet ensures that a specified number of pod replicas are running at any given time.

ReplicaSetSpec

ReplicaSetSpec is the specification of a ReplicaSet.

ReplicaSetStatus

ReplicaSetStatus represents the current status of a ReplicaSet.

  • 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 replica set.
  • readyReplicas (int32)
    The number of ready replicas for this replica set.
  • fullyLabeledReplicas (int32)
    The number of pods that have labels matching the labels of the pod template of the replicaset.
  • conditions ([]ReplicaSetCondition)
    Patch strategy: merge on key type
    Represents the latest available observations of a replica set’s current state.
    ReplicaSetCondition describes the state of a replica set at a certain point.
    • conditions.status (string), required
      Status of the condition, one of True, False, Unknown.
    • conditions.type (string), required
      Type of replica set 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 ReplicaSet.

ReplicaSetList

ReplicaSetList is a collection of ReplicaSets.

Operations

get read the specified ReplicaSet

HTTP Request

GET /apis/apps/v1/namespaces/{namespace}/replicasets/{name}

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

200 (ReplicaSet): OK
401: Unauthorized

get read status of the specified ReplicaSet

HTTP Request

GET /apis/apps/v1/namespaces/{namespace}/replicasets/{name}/status

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

200 (ReplicaSet): OK
401: Unauthorized

list list or watch objects of kind ReplicaSet

HTTP Request

GET /apis/apps/v1/namespaces/{namespace}/replicasets

Parameters
Response

200 (ReplicaSetList): OK
401: Unauthorized

list list or watch objects of kind ReplicaSet

HTTP Request

GET /apis/apps/v1/replicasets

Parameters
Response

200 (ReplicaSetList): OK
401: Unauthorized

create create a ReplicaSet

HTTP Request

POST /apis/apps/v1/namespaces/{namespace}/replicasets

Parameters
Response

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

update replace the specified ReplicaSet

HTTP Request

PUT /apis/apps/v1/namespaces/{namespace}/replicasets/{name}

Parameters
Response

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

update replace status of the specified ReplicaSet

HTTP Request

PUT /apis/apps/v1/namespaces/{namespace}/replicasets/{name}/status

Parameters
Response

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

patch partially update the specified ReplicaSet

HTTP Request

PATCH /apis/apps/v1/namespaces/{namespace}/replicasets/{name}

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

  • {namespace} (string), required
    namespace

  • body (Patch), required

  • ?dryRun (string)
    dryRun

  • ?fieldManager (string)
    fieldManager

  • ?force (boolean)
    force

  • ?pretty (string)
    pretty

Response

200 (ReplicaSet): OK
401: Unauthorized

patch partially update status of the specified ReplicaSet

HTTP Request

PATCH /apis/apps/v1/namespaces/{namespace}/replicasets/{name}/status

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

  • {namespace} (string), required
    namespace

  • body (Patch), required

  • ?dryRun (string)
    dryRun

  • ?fieldManager (string)
    fieldManager

  • ?force (boolean)
    force

  • ?pretty (string)
    pretty

Response

200 (ReplicaSet): OK
401: Unauthorized

delete delete a ReplicaSet

HTTP Request

DELETE /apis/apps/v1/namespaces/{namespace}/replicasets/{name}

Parameters
Response

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

deletecollection delete collection of ReplicaSet

HTTP Request

DELETE /apis/apps/v1/namespaces/{namespace}/replicasets

Parameters
Response

200 (Status): OK
401: Unauthorized