Yes, you can scale the pods in kubernetes, For that, you need to set up a cluster with auto-scaling on.
For auto-scaling configuration, create a script file with the following commands and start the cluster along with this script file.
export NUM\_NODES=2
export KUBE\-AUTOSCALER\_MIN\_NODES=2
export KUBE\_AUTOSCALER\_MAX\_NODES=5
export KUBE\_ENABLE\_CLUSTER\_AUTOSCALER=TRUE
Then if the load increases then it will scale the pods up to 5 pods.
For more information, refer to kubernetes training.