-
Argo cd수업 내용 정리 2024. 10. 17. 17:20
(2024.10.17)기본 환경 세팅kubernetes ingress 접근* service: L4 수준의 로드밸런서ingress: 요청을 원하는 pod로 분산(로드밸런싱), L7 계층 -> 클러스터 외부에서 http요청을 통해서 라우팅해서 pod로 분산이미지 생성docker build --no-cache -t testweb:1.0 ./ object 생성1. service object외부에서 직접 접근이 아니라 ingress를 통해서 접근하므로 yaml -> ClusterIP type으로 생성* port: 서비스 포트, targetPort: 포드의 포트2. ingress objectingress.yamlingress 실행 규칙을 지정한 파일ingress nginx 컨트롤러 사용할 예정이므로 yaml에 관련..