kubectl scale deploy nginx --replicas=3
kubectl set image deploy nginx nginx=nginx:latest
kubectl autoscale deployment php-apache --cpu-percent=50 --min=1 --max=10
kubectl get hpa
kubectl label deploy nginx test=test
kubectl get deploy nginx --show-labels
kubectl annotate deploy nginx test=tesst
kubectl get deploy nginx -o jsonpath={.metadata.annotations}
kubectl rollout pause deploy nginx