Skip to main content

Interface: KubeReplicaSet

This is the base interface for all Kubernetes resources, i.e. it contains fields that all Kubernetes resources have.

Extends

Properties

apiVersion?

optional apiVersion: string;

Inherited from

KubeObjectInterface.apiVersion

Defined in

src/lib/k8s/cluster.ts:73


kind

kind: string;

Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to.

In CamelCase.

Cannot be updated.

See

more info

Inherited from

KubeObjectInterface.kind

Defined in

src/lib/k8s/cluster.ts:72


metadata

metadata: KubeMetadata;

Inherited from

KubeObjectInterface.metadata

Defined in

src/lib/k8s/cluster.ts:74


spec

spec: object;

Index Signature

[other: string]: any

minReadySeconds

minReadySeconds: number;

replicas

replicas: number;

selector

selector: LabelSelector;

template

template: object;

template.metadata?

optional metadata: KubeMetadata;

template.spec

spec: KubePodSpec;

Defined in

src/lib/k8s/replicaSet.ts:13


status

status: object;

availableReplicas

availableReplicas: number;

conditions

conditions: Omit<KubeCondition, "lastProbeTime" | "lastUpdateTime">[];

fullyLabeledReplicas

fullyLabeledReplicas: number;

observedGeneration

observedGeneration: number;

readyReplicas

readyReplicas: number;

replicas

replicas: number;

Defined in

src/lib/k8s/replicaSet.ts:23