mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
127 lines
3.3 KiB
TypeScript
127 lines
3.3 KiB
TypeScript
/**
|
|
* Copyright (c) OpenLens Authors. All rights reserved.
|
|
* Licensed under MIT License. See LICENSE in root directory for more information.
|
|
*/
|
|
|
|
import type { DerivedKubeApiOptions, IgnoredKubeApiOptions } from "../kube-api";
|
|
import { KubeApi } from "../kube-api";
|
|
import { metricsApi } from "./metrics.api";
|
|
import type { PodMetricData } from "./pod.api";
|
|
import type { KubeObjectStatus, LabelSelector, NamespaceScopedMetadata } from "../kube-object";
|
|
import { KubeObject } from "../kube-object";
|
|
import type { PodTemplateSpec } from "./types/pod-template-spec";
|
|
|
|
export class ReplicaSetApi extends KubeApi<ReplicaSet> {
|
|
constructor(opts: DerivedKubeApiOptions & IgnoredKubeApiOptions = {}) {
|
|
super({
|
|
...opts,
|
|
objectConstructor: ReplicaSet,
|
|
});
|
|
}
|
|
|
|
protected getScaleApiUrl(params: { namespace: string; name: string }) {
|
|
return `${this.getUrl(params)}/scale`;
|
|
}
|
|
|
|
async getReplicas(params: { namespace: string; name: string }): Promise<number> {
|
|
const { status } = await this.request.get(this.getScaleApiUrl(params));
|
|
|
|
return (status as { replicas: number })?.replicas;
|
|
}
|
|
|
|
scale(params: { namespace: string; name: string }, replicas: number) {
|
|
return this.request.put(this.getScaleApiUrl(params), {
|
|
data: {
|
|
metadata: params,
|
|
spec: {
|
|
replicas,
|
|
},
|
|
},
|
|
});
|
|
}
|
|
}
|
|
|
|
export function getMetricsForReplicaSets(replicasets: ReplicaSet[], namespace: string, selector = ""): Promise<PodMetricData> {
|
|
const podSelector = replicasets.map(replicaset => `${replicaset.getName()}-[[:alnum:]]{5}`).join("|");
|
|
const opts = { category: "pods", pods: podSelector, namespace, selector };
|
|
|
|
return metricsApi.getMetrics({
|
|
cpuUsage: opts,
|
|
memoryUsage: opts,
|
|
fsUsage: opts,
|
|
fsWrites: opts,
|
|
fsReads: opts,
|
|
networkReceive: opts,
|
|
networkTransmit: opts,
|
|
}, {
|
|
namespace,
|
|
});
|
|
}
|
|
|
|
export interface ReplicaSetSpec {
|
|
replicas?: number;
|
|
selector: LabelSelector;
|
|
template?: PodTemplateSpec;
|
|
minReadySeconds?: number;
|
|
}
|
|
|
|
export interface ReplicaSetStatus extends KubeObjectStatus {
|
|
replicas: number;
|
|
fullyLabeledReplicas?: number;
|
|
readyReplicas?: number;
|
|
availableReplicas?: number;
|
|
observedGeneration?: number;
|
|
}
|
|
|
|
export class ReplicaSet extends KubeObject<
|
|
NamespaceScopedMetadata,
|
|
ReplicaSetStatus,
|
|
ReplicaSetSpec
|
|
> {
|
|
static kind = "ReplicaSet";
|
|
static namespaced = true;
|
|
static apiBase = "/apis/apps/v1/replicasets";
|
|
|
|
getSelectors(): string[] {
|
|
return KubeObject.stringifyLabels(this.spec.selector.matchLabels);
|
|
}
|
|
|
|
getNodeSelectors(): string[] {
|
|
return KubeObject.stringifyLabels(this.spec.template?.spec?.nodeSelector);
|
|
}
|
|
|
|
getTemplateLabels(): string[] {
|
|
return KubeObject.stringifyLabels(this.spec.template?.metadata?.labels);
|
|
}
|
|
|
|
getTolerations() {
|
|
return this.spec.template?.spec?.tolerations ?? [];
|
|
}
|
|
|
|
getAffinity() {
|
|
return this.spec.template?.spec?.affinity;
|
|
}
|
|
|
|
getAffinityNumber() {
|
|
return Object.keys(this.getAffinity() ?? {}).length;
|
|
}
|
|
|
|
getDesired() {
|
|
return this.spec.replicas ?? 0;
|
|
}
|
|
|
|
getCurrent() {
|
|
return this.status?.availableReplicas ?? 0;
|
|
}
|
|
|
|
getReady() {
|
|
return this.status?.readyReplicas ?? 0;
|
|
}
|
|
|
|
getImages() {
|
|
const containers = this.spec.template?.spec?.containers ?? [];
|
|
|
|
return containers.map(container => container.image);
|
|
}
|
|
}
|