/** * Copyright (c) 2021 OpenLens Authors * * Permission is hereby granted, free of charge, to any person obtaining a copy of * this software and associated documentation files (the "Software"), to deal in * the Software without restriction, including without limitation the rights to * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of * the Software, and to permit persons to whom the Software is furnished to do so, * subject to the following conditions: * * The above copyright notice and this permission notice shall be included in all * copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ import "./deployment-scale-dialog.scss"; import React, { Component } from "react"; import { computed, observable, makeObservable } from "mobx"; import { observer } from "mobx-react"; import { Dialog, DialogProps } from "../dialog"; import { Wizard, WizardStep } from "../wizard"; import { Deployment, DeploymentApi, deploymentApi } from "../../../common/k8s-api/endpoints"; import { Icon } from "../icon"; import { Slider } from "../slider"; import { Notifications } from "../notifications"; import { cssNames } from "../../utils"; interface Props extends Partial { deploymentApi: DeploymentApi } const dialogState = observable.object({ isOpen: false, data: null as Deployment, }); @observer export class DeploymentScaleDialog extends Component { static defaultProps = { deploymentApi }; @observable ready = false; @observable currentReplicas = 0; @observable desiredReplicas = 0; constructor(props: Props) { super(props); makeObservable(this); } static open(deployment: Deployment) { dialogState.isOpen = true; dialogState.data = deployment; } static close() { dialogState.isOpen = false; } get deployment() { return dialogState.data; } close = () => { DeploymentScaleDialog.close(); }; @computed get scaleMax() { const { currentReplicas } = this; const defaultMax = 50; return currentReplicas <= defaultMax ? defaultMax * 2 : currentReplicas * 2; } onOpen = async () => { const { deployment } = this; this.currentReplicas = await this.props.deploymentApi.getReplicas({ namespace: deployment.getNs(), name: deployment.getName(), }); this.desiredReplicas = this.currentReplicas; this.ready = true; }; onClose = () => { this.ready = false; }; onChange = (evt: React.ChangeEvent, value: number) => { this.desiredReplicas = value; }; scale = async () => { const { deployment } = this; const { currentReplicas, desiredReplicas, close } = this; try { if (currentReplicas !== desiredReplicas) { await this.props.deploymentApi.scale({ name: deployment.getName(), namespace: deployment.getNs(), }, desiredReplicas); } close(); } catch (err) { Notifications.error(err); } }; private readonly scaleMin = 0; desiredReplicasUp = () => { this.desiredReplicas = Math.min(this.scaleMax, this.desiredReplicas + 1); }; desiredReplicasDown = () => { this.desiredReplicas = Math.max(this.scaleMin, this.desiredReplicas - 1); }; renderContents() { const { currentReplicas, desiredReplicas, onChange, scaleMax } = this; const warning = currentReplicas < 10 && desiredReplicas > 90; return ( <>
Current replica scale: {currentReplicas}
Desired number of replicas: {desiredReplicas}
{warning &&
High number of replicas may cause cluster performance issues
} ); } render() { const { className, ...dialogProps } = this.props; const deploymentName = this.deployment ? this.deployment.getName() : ""; const header = (
Scale Deployment {deploymentName}
); return ( {this.renderContents()} ); } }