Heeye Blog

Written by@heeye
Work for a financial company as a Backend developer & Cloud engineer😌

GitHub

노는게 제일 좋아🥳🥳🥳

테니스코트 예약🎾 테니스에 미친거 같군 올림픽 테니스장 신청일시 : 일주일 전 00시 11분 (토요일껀 일요일에 가능) https://www.ksponco.or.kr/online/tennis/login.do 목동 테니스장 신청일시 : 일주일 전 9시 30분 (토요일껀 토요일에 가능) https://www.ycs.or.kr/yeyak/fmcs/43 장충테니…

외부WAS와 Springboot의 내장 톰캣

외장WAS(like apache)와 내장WAS(like embedded tomcat) tomcat은 WAS라고 불리긴 하지만 정확히 말하면 servlet container이다. servlet container라는건 java의 servlet 스펙을 만족하는 서버라는 뜻이다. java는 J2EE(Enterprise Edition), J2SE(Standard …

[CKA] Trouble Shooting!

Application Failure application failure은, (서비스-파드) 관계가 있을 때 서비스가 파드를 잘 select하고 있는지 노출된 port는 잘 맞는지 주입된 환경변수(env)는 잘 들어갔는지 이런 것에 대해서 질의한다😎 Control Plane Failure scheduler yaml 고치기 /etc/kubernetes/man…

[CKA] Section9. Networking

📌Networking https://github.com/jonnung/cka-practice/blob/master/8-networking.md 정리를 잘해놓으신 것 같아서 참고하기 네트워크는 어렵기도 어려운데 영어로 들으려니까 못듣겠어서 포기했다😈😈😈😈

[CKA] Section8. Storage

📌Storage PV 만들 수 있어? PVC 만들 수 있어? PVC 만들어놓은 거 Pod에 연결할 수 있어? 이렇게 3개 해보면 됨!

[CKA] Section7. Security

📌Security TLS 비대칭키를 사용하여 ssl 통신을 하게 되는데, 원리는 이렇다. client와 server가 있을 때 client는 private key를 가지고 있다. server 또한 자신의 private key와 public key를 가지고 있다. server는 먼저 자신의 public key를 보내고(여기서 certificate를 같이 보…

[CKA] Section6. Cluster Maintenance

📌Cluster Maintenance OS Upgrades Kubernetes Software Versions k8s의 version 체계 {major version}.{minor version}.{patch version} Cluster Upgrade kubeadm은 kubelet의 업그레이드까지 해주지 않기 때문에, 따로 kubelet upgrade…

[CKA] Section5. Application Lifecycle Management

📌Application Lifecycle Management Rolling Updates and Rollbacks StrategyType Recreate RollingUpdate Upgrades Rollback Commands and Arguments Docker의 Entrypoint랑 cmd 차이 pod의 command와 argument의 문법(?…

[CKA] Section4. Logging & Monitoring

📌Logging & Monitoring Monitoring Cluster Components in-memroy 솔루션인 메트릭 정보는 어떻게 수집될까? kubelet의 cAdvisor가 메트릭 서버로 정보를 보냄 metric 설치후에 나 하면 CPU와 Memory 정보들이 나옴!

[CKA] Section3. Scheduling

📌Scheduling 1. manual scheduling scheduler가 없을 때 나타나는 상태값 node할당안된 pod에 nodeName으로 node 할당하기 Delete the existing pod first. Run the below command: To list and know the names of available nodes on t…