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 | 31 |
Tags
- Container
- docker install
- go
- regexp
- nodemon
- Delete
- vscoe
- golang
- kubespray
- time_zone
- kubernetes
- kubernetes #container
- linux
- npm
- docker
- ansible
- GORM
- db
- k8s
- html
- Git
- 쿠버네티스
- node
- bash
- NGINX
- kube
- GitHub
- mariadb
- ubuntu
- docker-compose
Archives
- Today
- Total
목록쿠버네티스 (1)
Deve.haeri
[쿠버네티스] nginx 서비스 올리기
nginx : 트래픽이 많은 웹사이트의 확장성을 위해 개발 된 경량의 고성능 웹서버이다. 요청에 의해 정적 파일응 응답해주는 HTTP SERVER, 요청으로부터 애플리케이션 서버에 로드밸런싱 해주는 Reverse Proxy Server, Mail Proxy Server 등으로 사용되고 있다. nginx 구축 방법 네임스페이스 생성 $ kubectl create ns [namespace_name] nginx pod 를 띄우기 위한 deployment yaml 파일 생성 $ vi nginx-deployment.yaml #파일 내용 apiVersion: apps/v1 kind: Deployment metadata: name: nginx-deployment labels: app: nginx spec: repli..
Container
2022. 10. 13. 10:48