Latency Numbers Every Programmer Should Know
·
System Engineering/System Design
https://colin-scott.github.io/personal_website/research/interactive_latency.html Numbers Every Programmer Should Know By Year colin-scott.github.io 시스템 디자인을 할 때 이 숫자들을 참고해서 기준을 세워보자.
Kubernetes iceberg: the bigger picture of what you might expect while diving deeper…
·
System Engineering/Kubernetes
쿠버네티스 네트워크 오개념 -1 (routing에 관해서)
·
System Engineering/Kubernetes
1. 온프렘 쿠버네티스에서는 pod에서 외부(8.8.8.8)로 ping이 간다. 그런데 aks의 pod에서는 외부(8.8.8.8)로 ping이 안간다. 왜? 이건 생각좀 해봐야돼. -> 오개념) 처음에 update가 되는게 nsg가 stateful firewall이라 가능하다고 생각했는데, 아니야. 왜냐하면 in/out nsg가 다 열려있거든. Q)온프렘 쿠버네티스 생성했을 때 LB가 자동으로 생기나? 혹시 그게 생겨서 외부 인터넷과 연결이 되는건지 확인을 해봐야겠다. 2. 어쨌든 생각해보면 ping 빼고 일반적인 update는 온프렘이든 aks든 되거든? update는 다운로드고, 요청을 해서 파일을 받는거니까 inbound/outbound가 다 되는거야. 근데 내가 헷갈리는건, outbound tra..
쿠버네티스 네트워크 분석 좋은 글 (tcp-dump)
·
System Engineering/Kubernetes
https://ikcoo.tistory.com/164 74. Kubernetes NodePort Networking 분석 (kube-proxy : iptable mode) kubernetes NodePort Networking 분석 kube-proxy = iptable mode CNI = Flannel [kubernetes kube-proxy 관련 글 목록] 54. Kubernetes kube-proxy Mode 분석 70. Kubernetes kube-proxy IPVS Mode 설정.. ikcoo.tistory.com
local kubectl을 aks와 연결하는 방법? + 연결 리셋하는 방법?
·
CLOUD/Azure Cloud
https://www.reddit.com/r/kubernetes/comments/8ohxcz/how_to_connect_kubectl_to_aks/ How to connect kubectl to AKS? Hi everyone. I'm new to Kubernetes. I've played around with it locally using minikube and kubectl which is pretty straight forward and easy to set... www.reddit.com az aks get-credentials --resource-group myResourceGroup --name myAKSCluster 이거 열어보면 이렇게 나옴. 이거 지워주면 됨. credentials 등록하니..
멀티리전 & 멀티스테이지 인프라를 위한 모노레포 구축하기 (2022.04 HashiTalk)
·
IaC/Terraform
by SuperbAI의 백엔드 개발자 System Backend dev : Korea, USA prod : Korea, USA 이렇게 총 네 종류의 클러스터가 있다. (Multi-Region, Multi-Stage) 네 종류의 클러스터를 하나씩 관리하기에는 품이 많이 들어간다. 그래서 고려하게 된 것이 Terraform이다. Terraform 사용으로 얻으려고 한 가치: 1. Repetitive steps in multi-stage & -region -> Automation 애플리케이션이 점점 늘어나는데 4개의 클러스터에 배포를 해야되다보니 필연적으로 반복이 있을 수 밖에 없다. 운영중인 ECS cluster에 새로운 애플리케이션 A를 배포한다고 해보자. 컨테이너 레지스트리 생성 -> API Secret..