본문 바로가기

⭐ Kubernetes & EKS/k8s (쿠버네티스)

Hpa 삭제 후 재 생성

728x90
반응형

# Hpa를 삭제 후 재 생성하는 방법 

- 모든 hpa 삭제 명령어

kubectl delete hpa --all

- hpa 생성 명령어 (CPU의 평균 사용률이 30% 이상일때 스케일 아웃 되도록 설정, 최소는1개이고 최대는 10개 까지)

k8s-master-node@k8smasternode-Virtual-Machine:~/yaml/metrics-server$ kubectl delete hpa --all
horizontalpodautoscaler.autoscaling "nginx-deployment-01" deleted
k8s-master-node@k8smasternode-Virtual-Machine:~/yaml/metrics-server$ kubectl autoscale deployment nginx-deployment-01 --cpu-percent=30 --min=1 --max=10
horizontalpodautoscaler.autoscaling/nginx-deployment-01 autoscaled

- 끝 -

 

728x90
반응형