반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
Tags
- Vagrant
- namespace
- docker
- WEB
- 쿠버네티스
- devops #jenkins
- Kubernetes
- java
- 컨테이너
- mongodb operator
- DOIK
- linux
- httpd실행
- variable
- springboot
- multivm
- python
- container
- bash
- aws #engineer
- Strimzi
- ioredirection
- 초간단파이썬
- Engineer
- RSS
- 도커
- devops #engineer
- 파이썬
- k8s
- nginx
Archives
- Today
- Total
목록LimitRange (1)
샤인의 IT (막 적는) 메모장
[Kubernetes 기본 정리] 네임스페이스 리소스 설정
네임스페이스 리소스 관리를 위한 ResourceQuota와 LimitRange에 대해 알아본다. ResourceQuota는 네임스페이스, LimitRange는 각 컨테이너에 대한 자원을 제한한다. ResourceQuota #ResourceQuota 오브젝트 apiVersion: v1 kind: ResourceQuota metadata: name: mem-cpu-demo spec: hard: requests.cpu: "1" #Request 정보 requests.memory: 1Gi limits.cpu: "2" # Limit 정보 limits.memory: 2Gi pods: "2" # 파드 수 제한 #리소스 쿼타 생성하고 해당 resourceQuota 리소스의 status를 확인하면 현재 사용 중인 정보를 ..
Container/Kubernetes 기본
2022. 1. 11. 11:27