Answers for "kubectl scale up pods"

1

kubernetes command line to scale down pods

kubectl scale --replicas=4 deployment my-nginxdeployment
Posted by: Guest on August-25-2021
0

kubectl get pods wide

# Current Namespace
kubectl get pods -o wide
# Particular Namespace
kubectl get po -o wide -n <namespaces-name>
# All namespaces
kubectl get pods -o wide -A
Posted by: Guest on January-15-2022

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language