⭐ Kubernetes & EKS/리소스 제한 (2) 썸네일형 리스트형 네임스페이스별 리소스 총량 제한 방법 # 네임스페이스별 리소스 총량 제한 방법 쿠버네티스 공식시아티 검색 > Quotas for a Namespace > 리소스 쿼타 소스코드 적용 # 네임스페이스 생성과 적용 kubectl create namespace quota-mem-cpu-example kubectl apply -f https://k8s.io/examples/admin/resource/quota-mem-cpu.yaml --namespace=quota-mem-cpu-example # 생성된 네임스페이스 확인하기 kubectl get pod -n quota-mem-cpu-example # 리소스 쿼타 정보 확인하기 kubectl describe resourcequotas -n quota-mem-cpu-example # 리소스 쿼타 테스트 .. 시스템 리소스 허용과 제한 설정 # 시스템 리소스 요구사항 설정 # 쿠버네티스 사이트 에서 소스 검색하기 > resources kubectl run nginx --image=nginx --port=80 --dry-run -o yaml > nginx-deploy.yaml vim nginx-deploy.yaml apiVersion: apps/v1 kind: Deployment metadata: creationTimestamp: null labels: run: nginx name: nginx spec: replicas: 3 selector: matchLabels: run: nginx strategy: {} template: metadata: creationTimestamp: null labels: run: nginx spec: contain.. 이전 1 다음