mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
172 lines
4.2 KiB
TypeScript
172 lines
4.2 KiB
TypeScript
import { IAffinity, WorkloadKubeObject } from "../workload-kube-object";
|
|
import { autobind } from "../../utils";
|
|
import { KubeApi } from "../kube-api";
|
|
|
|
export class DeploymentApi extends KubeApi<Deployment> {
|
|
protected getScaleApiUrl(params: { namespace: string; name: string }) {
|
|
return this.getUrl(params) + "/scale"
|
|
}
|
|
|
|
getReplicas(params: { namespace: string; name: string }): Promise<number> {
|
|
return this.request
|
|
.get(this.getScaleApiUrl(params))
|
|
.then(({ status }: any) => status.replicas)
|
|
}
|
|
|
|
scale(params: { namespace: string; name: string }, replicas: number) {
|
|
return this.request.put(this.getScaleApiUrl(params), {
|
|
data: {
|
|
metadata: params,
|
|
spec: {
|
|
replicas: replicas
|
|
}
|
|
}
|
|
})
|
|
}
|
|
}
|
|
|
|
@autobind()
|
|
export class Deployment extends WorkloadKubeObject {
|
|
static kind = "Deployment"
|
|
|
|
spec: {
|
|
replicas: number;
|
|
selector: { matchLabels: { [app: string]: string } };
|
|
template: {
|
|
metadata: {
|
|
creationTimestamp?: string;
|
|
labels: { [app: string]: string };
|
|
};
|
|
spec: {
|
|
containers: {
|
|
name: string;
|
|
image: string;
|
|
args?: string[];
|
|
ports?: {
|
|
name: string;
|
|
containerPort: number;
|
|
protocol: string;
|
|
}[];
|
|
env?: {
|
|
name: string;
|
|
value: string;
|
|
}[];
|
|
resources: {
|
|
limits?: {
|
|
cpu: string;
|
|
memory: string;
|
|
};
|
|
requests: {
|
|
cpu: string;
|
|
memory: string;
|
|
};
|
|
};
|
|
volumeMounts?: {
|
|
name: string;
|
|
mountPath: string;
|
|
}[];
|
|
livenessProbe?: {
|
|
httpGet: {
|
|
path: string;
|
|
port: number;
|
|
scheme: string;
|
|
};
|
|
initialDelaySeconds: number;
|
|
timeoutSeconds: number;
|
|
periodSeconds: number;
|
|
successThreshold: number;
|
|
failureThreshold: number;
|
|
};
|
|
readinessProbe?: {
|
|
httpGet: {
|
|
path: string;
|
|
port: number;
|
|
scheme: string;
|
|
};
|
|
initialDelaySeconds: number;
|
|
timeoutSeconds: number;
|
|
periodSeconds: number;
|
|
successThreshold: number;
|
|
failureThreshold: number;
|
|
};
|
|
terminationMessagePath: string;
|
|
terminationMessagePolicy: string;
|
|
imagePullPolicy: string;
|
|
}[];
|
|
restartPolicy: string;
|
|
terminationGracePeriodSeconds: number;
|
|
dnsPolicy: string;
|
|
affinity?: IAffinity;
|
|
nodeSelector?: {
|
|
[selector: string]: string;
|
|
};
|
|
serviceAccountName: string;
|
|
serviceAccount: string;
|
|
securityContext: {};
|
|
schedulerName: string;
|
|
tolerations?: {
|
|
key: string;
|
|
operator: string;
|
|
effect: string;
|
|
tolerationSeconds: number;
|
|
}[];
|
|
volumes?: {
|
|
name: string;
|
|
configMap: {
|
|
name: string;
|
|
defaultMode: number;
|
|
optional: boolean;
|
|
};
|
|
}[];
|
|
};
|
|
};
|
|
strategy: {
|
|
type: string;
|
|
rollingUpdate: {
|
|
maxUnavailable: number;
|
|
maxSurge: number;
|
|
};
|
|
};
|
|
}
|
|
status: {
|
|
observedGeneration: number;
|
|
replicas: number;
|
|
updatedReplicas: number;
|
|
readyReplicas: number;
|
|
availableReplicas?: number;
|
|
unavailableReplicas?: number;
|
|
conditions: {
|
|
type: string;
|
|
status: string;
|
|
lastUpdateTime: string;
|
|
lastTransitionTime: string;
|
|
reason: string;
|
|
message: string;
|
|
}[];
|
|
}
|
|
|
|
getConditions(activeOnly = false) {
|
|
const { conditions } = this.status
|
|
if (!conditions) return []
|
|
if (activeOnly) {
|
|
return conditions.filter(c => c.status === "True")
|
|
}
|
|
return conditions
|
|
}
|
|
|
|
getConditionsText(activeOnly = true) {
|
|
return this.getConditions(activeOnly).map(({ type }) => type).join(" ")
|
|
}
|
|
|
|
getReplicas() {
|
|
return this.spec.replicas || 0;
|
|
}
|
|
}
|
|
|
|
export const deploymentApi = new DeploymentApi({
|
|
kind: Deployment.kind,
|
|
apiBase: "/apis/apps/v1/deployments",
|
|
isNamespaced: true,
|
|
objectConstructor: Deployment,
|
|
});
|