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
반응형
'⭐ Kubernetes & EKS > k8s (쿠버네티스)' 카테고리의 다른 글
pod 삭제 명령어 (0) | 2022.03.04 |
---|---|
쿠버네티스 YAML configuration 파일 설명 및 YAML 문법 검사 사이트 (0) | 2021.12.28 |
k8s 새로운 namespace를 생성하고, nginx deply 후에 hpa를 활성화 해보자 (0) | 2021.11.09 |
k8s 쿠버네티스 기본 namespace 변경하기 (0) | 2021.11.09 |
쿠버네티스 AutoComplete 기능 활성화 (0) | 2021.09.05 |