ReplicaSet ensures that a specified number of pod replicas are running at any given time.
apiVersion: apps/v1
import "k8s.io/api/apps/v1"
ReplicaSet ensures that a specified number of pod replicas are running at any given time.
apiVersion: apps/v1
kind: ReplicaSet
metadata (ObjectMeta)
If the Labels of a ReplicaSet are empty, they are defaulted to be the same as the Pod(s) that the ReplicaSet manages. Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
spec (ReplicaSetSpec)
Spec defines the specification of the desired behavior of the ReplicaSet. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status
status (ReplicaSetStatus)
Status is the most recently observed status of the ReplicaSet. This data may be out of date by some window of time. Populated by the system. Read-only. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status
ReplicaSetSpec is the specification of a ReplicaSet.
selector (LabelSelector), required
Selector is a label query over pods that should match the replica count. Label keys and values that must match in order to be controlled by this replica set. It must match the pod template's labels. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/#label-selectors
template (PodTemplateSpec)
Template is the object that describes the pod that will be created if insufficient replicas are detected. More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicaset/#pod-template
replicas (int32)
Replicas is the number of desired pods. This is a pointer to distinguish between explicit zero and unspecified. Defaults to 1. More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicaset
minReadySeconds (int32)
Minimum number of seconds for which a newly created pod should be ready without any of its container crashing, for it to be considered available. Defaults to 0 (pod will be considered available as soon as it is ready)
ReplicaSetStatus represents the current status of a ReplicaSet.
replicas (int32), required
Replicas is the most recently observed number of non-terminating pods. More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicaset
availableReplicas (int32)
The number of available non-terminating pods (ready for at least minReadySeconds) for this replica set.
readyReplicas (int32)
The number of non-terminating pods targeted by this ReplicaSet with a Ready Condition.
terminatingReplicas (int32)
The number of terminating pods for this replica set. Terminating pods have a non-null .metadata.deletionTimestamp and have not yet reached the Failed or Succeeded .status.phase.
This is an alpha field. Enable DeploymentReplicaSetTerminatingReplicas to be able to use this field.
fullyLabeledReplicas (int32)
The number of non-terminating pods that have labels matching the labels of the pod template of the replicaset.
conditions ([]ReplicaSetCondition)
Patch strategy: merge on key type
Map: unique values on key type will be kept during a merge
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 is a collection of ReplicaSets.
apiVersion: apps/v1
kind: ReplicaSetList
metadata (ListMeta)
Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
items ([]ReplicaSet), required
List of ReplicaSets. More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicaset
get
read the specified ReplicaSet HTTP Request
GET /apis/apps/v1/namespaces/{namespace}/replicasets/{name}
Parametersname (in path): string, required
name of the ReplicaSet
namespace (in path): string, required
pretty (in query): string
200 (ReplicaSet): OK
401: Unauthorized
get
read status of the specified ReplicaSet HTTP Request
GET /apis/apps/v1/namespaces/{namespace}/replicasets/{name}/status
Parametersname (in path): string, required
name of the ReplicaSet
namespace (in path): string, required
pretty (in query): string
200 (ReplicaSet): OK
401: Unauthorized
list
list or watch objects of kind ReplicaSet HTTP Request
GET /apis/apps/v1/namespaces/{namespace}/replicasets
Parametersnamespace (in path): string, required
allowWatchBookmarks (in query): boolean
continue (in query): string
fieldSelector (in query): string
labelSelector (in query): string
limit (in query): integer
pretty (in query): string
resourceVersion (in query): string
resourceVersionMatch (in query): string
sendInitialEvents (in query): boolean
timeoutSeconds (in query): integer
watch (in query): boolean
200 (ReplicaSetList): OK
401: Unauthorized
list
list or watch objects of kind ReplicaSet HTTP Request
GET /apis/apps/v1/replicasets
ParametersallowWatchBookmarks (in query): boolean
continue (in query): string
fieldSelector (in query): string
labelSelector (in query): string
limit (in query): integer
pretty (in query): string
resourceVersion (in query): string
resourceVersionMatch (in query): string
sendInitialEvents (in query): boolean
timeoutSeconds (in query): integer
watch (in query): boolean
200 (ReplicaSetList): OK
401: Unauthorized
create
create a ReplicaSet HTTP Request
POST /apis/apps/v1/namespaces/{namespace}/replicasets
Parametersnamespace (in path): string, required
body: ReplicaSet, required
dryRun (in query): string
fieldManager (in query): string
fieldValidation (in query): string
pretty (in query): string
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}
Parametersname (in path): string, required
name of the ReplicaSet
namespace (in path): string, required
body: ReplicaSet, required
dryRun (in query): string
fieldManager (in query): string
fieldValidation (in query): string
pretty (in query): string
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
Parametersname (in path): string, required
name of the ReplicaSet
namespace (in path): string, required
body: ReplicaSet, required
dryRun (in query): string
fieldManager (in query): string
fieldValidation (in query): string
pretty (in query): string
200 (ReplicaSet): OK
201 (ReplicaSet): Created
401: Unauthorized
patch
partially update the specified ReplicaSet HTTP Request
PATCH /apis/apps/v1/namespaces/{namespace}/replicasets/{name}
Parametersname (in path): string, required
name of the ReplicaSet
namespace (in path): string, required
body: Patch, required
dryRun (in query): string
fieldManager (in query): string
fieldValidation (in query): string
force (in query): boolean
pretty (in query): string
200 (ReplicaSet): OK
201 (ReplicaSet): Created
401: Unauthorized
patch
partially update status of the specified ReplicaSet HTTP Request
PATCH /apis/apps/v1/namespaces/{namespace}/replicasets/{name}/status
Parametersname (in path): string, required
name of the ReplicaSet
namespace (in path): string, required
body: Patch, required
dryRun (in query): string
fieldManager (in query): string
fieldValidation (in query): string
force (in query): boolean
pretty (in query): string
200 (ReplicaSet): OK
201 (ReplicaSet): Created
401: Unauthorized
delete
delete a ReplicaSet HTTP Request
DELETE /apis/apps/v1/namespaces/{namespace}/replicasets/{name}
Parametersname (in path): string, required
name of the ReplicaSet
namespace (in path): string, required
body: DeleteOptions
dryRun (in query): string
gracePeriodSeconds (in query): integer
ignoreStoreReadErrorWithClusterBreakingPotential (in query): boolean
pretty (in query): string
propagationPolicy (in query): string
200 (Status): OK
202 (Status): Accepted
401: Unauthorized
deletecollection
delete collection of ReplicaSet HTTP Request
DELETE /apis/apps/v1/namespaces/{namespace}/replicasets
Parametersnamespace (in path): string, required
body: DeleteOptions
continue (in query): string
dryRun (in query): string
fieldSelector (in query): string
gracePeriodSeconds (in query): integer
ignoreStoreReadErrorWithClusterBreakingPotential (in query): boolean
labelSelector (in query): string
limit (in query): integer
pretty (in query): string
propagationPolicy (in query): string
resourceVersion (in query): string
resourceVersionMatch (in query): string
sendInitialEvents (in query): boolean
timeoutSeconds (in query): integer
200 (Status): OK
401: Unauthorized
This page is automatically generated.
If you plan to report an issue with this page, mention that the page is auto-generated in your issue description. The fix may need to happen elsewhere in the Kubernetes project.
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4