-cpuLimits string
CPU Limits either in cores(2) or milicores(500m) (default "200m")
-cpuRequests string
CPU Requests either in cores(1) or milicores(250m) (default "100m")
-kubeconfig string
(optional) absolute path to the kubeconfig file (default "${HOME}/.kube/config")
-memLimits string
Memory limits either in GB(2) or milicores(500mb) (default "200mb")
-memRequests string
Memory requests either in GB(1) or milicores(250mb) (default "100mb")
-replicas string
No of pod replicas (default "1")
go run ClusterCapacity.go -cpuRequests=200m -cpuLimits=400m -memRequests=250mb -memLimits=500mb -replicas=10
==============================================================================================================
Total possible replicas for the pod with required input specs : 1561
So you can go ahead with deployment of 10 pod replicas in the Kubernetes cluster!!
==============================================================================================================