I have made a kubernetes cluster and also deployed a dashboard for the same (https://kubernetes.io/docs/tasks/access-application-cluster/web-ui-dashboard/). I want to scale (up and down) my deployment very frequently. Locally, i am using below command to handle the requirement:
example:
kubectl scale --replicas=200 deployment hello-world-deployment
kubectl scale --replicas=40 deployment hello-world-deployment
Is it possible to have a button/input field on Dashboard, where i can just enter my value and it does the magic automatically.