분류 전체보기

CH 포스팅 제목 링크 0 0. 개발 환경 구축 링크 1 1. 컴퓨터 원리 링크 2 2. 프로그래밍 언어 링크 3 3. Hello Go World 링크 4 4. 변수 링크 5 5-1. fmt - 출력 링크 5-2. fmt - 입력 링크 5-3. Scan() 함수의 동작 원리 링크 6 6-1. 연산자 - 산술 링크 6-2. 연산자 - 비교 링크 6-3. 연산자 - 논리 링크 6-4. 연산자 - 대입 링크
· AEWS2기
컨테이너 OverlayFS에 대한 이해 리눅스 파일 시스템 > UnionFS > OverlayFS(컨테이너 이미지) AWS Storage에 대한 이해 InstanceStorage, EBS, EFS, S3 Kubernetes Storage에 대한 이해 kubernetes Volume Tyep Volume, emptyDir, hostPath, Persistent Storage kubernetes Volume 추상화 Persistent Volume, Persistent Volume Claim 1. 리눅스 1-1. i-node의 동작흐름에 대한 애니메이션 [Youtube_Cd chen] Filesystem - inode & block ls dir / ls -l dir/file1 cat dir/file1 1-2..
[vinca's velog] [EKS] Amazon VPC CNI란? [EKS Best Practices Guides] Amazon VPC CNI [cilium] AWS VPC CNI plugin [Devopscube] Kubernetes Daemonset: A Comprehensive Guide 1. VPC 플러그인 설치 aws-node (DaemonSet) 생성 더보기 DaemonSet
· AEWS2기
[AWS] Amazon VPC CNI plugin for Kubernetes Amazon EKS 추가 기능을 사용한 작업 [Github] aws/amazon-vpc-cni-k8s [Github] Proposal: CNI plugin for Kubernetes networking over AWS VPC [tistory] [AWS]EKS 네트워크 이해하기(CNI Plugin) 1. AWS VPC CNI 소개 CNI - Container Network Interface VPC 와 통합 : VPC Flow logs , VPC 라우팅 정책, 보안 그룹(Security group) 을 사용 가능함 This plugin assigns an IP address from your VPC to each pod. VPC E..
· AEWS2기
[Vivek Grover Linkedin] IPTables vs IPVS in kubernetes [tistory] Pod 네트워크 (2) : Service 내부 구현 분석 (kube-proxy와 iptables) [tistory] [k8s] kube-porxy가 네트워크를 관리하는 3가지 모드(userspace, iptables, IPVS) 1. kube-proxy kube-proxy is a daemon running on each node. kube-proxy is a network proxy that runs on each node in your cluster, implementing part of the Kubernetes Service concept. kube-proxy maintains ne..
· AEWS2기
Linux Kernel Networking ~ 9분까지 https://2022.openinfradays.kr/session/6
· AEWS2기
1. pause 컨테이너란? 기본 컨테이너 Pod 생성시 기본으로 생성 역할 단순 무한루프를 돌며, SIGINT, SIGTERM을 받으면 종료되는 컨테이너 Network, IPC namespace를 생성, 유지, 공유 외부와 통신할 수 있는 네트워크 인터페이스를 가지고 있 PID 네임스페이스는 공유되는건가? - 좀비 컨테이너, 프로세스를 Pause가 관리할 수 는 없는지? [tistory] Pause 컨테이너 정리 [tistory] PAUSE 컨테이너 [IT hands-on] Kubernetes 101 : Pause containers [lan Lewis Blog] The Almighty Pause Container [alice Blog] 159. [Kubernetes] Pause 컨테이너의 역할과 원리..
· AEWS2기
0. References [Opensource Blog] A visual guide to Kubernetes networking fundamentals [Ronak Nathani Blog] How a Kubernetes Pod Gets an IP Address [Alibaba Cloud Blog] Improving Kubernetes Service Network Performance with Socket eBPF [Vivek Grover Linkedin] IPTables vs IPVS in kubernetes [커피고래 블로그] [번역] 쿠버네티스 네트워킹 이해하기#1: Pods [커피고래 블로그] [번역] 쿠버네티스 네트워킹 이해하기#2: Services [커피고래 블로그] [번역] 쿠버네티스 네트워킹..
· AEWS2기
0. Predictable Network Interface Names [ZETA WIKI] 리눅스 네트워크 [flavono123 블로그] ip: 리눅스 네트워크 장치 명칭 설명 예 eth[0-N] Classic, unpredictable kernel-native ethX naming eth0 eno[1-N] Names incorporating Firmware/BIOS provided index numbers for on-board devices 펌웨어에 인덱스 정보가 있는 경우 eno1 ens[1-N] Names incorporating Firmware/BIOS provided PCI Express hotplug slot index numbers PCI 익스프레스 핫플러그 슬롯 ens1 enps Name..
· AEWS2기
etcd (How etcd works with and without Kubernetes) Linux에 etcd 설치하기 curl -LO https://github.com/etcd-io/etcd/releases/download/v3.5.0/etcd-v3.5.0-linux-amd64.tar.gz tar xzvf etcd-v3.5.0-linux-amd64.tar.gz cd etcd-v3.5.0-linux-amd64 nohup ./etcd & etcd put, get # etcdctl put ./etcdctl put foo bar # etcdctl get ./etcdctl get foo etcdctl get --write-out=json foo etcdctl get foo 결과에 대한 메타데이터를 json으로 ..
· AEWS2기
kubectl krew Kubernetes 확장 플러그인 관리자 kubectl krew list kubectl get-all kubectl get-all은 kubernetes에서 지원하는 기본 명령어가 아님. (younggi@myeks:default) [root@myeks-host ~]# kubectl get-all W0303 22:44:46.275466 14381 warnings.go:70] v1 ComponentStatus is deprecated in v1.19+ NAME NAMESPACE AGE componentstatus/etcd-0 componentstatus/scheduler componentstatus/controller-manager configmap/kube-root-ca.crt def..
· AEWS2기
1. eks 구성도 2. 작업순서 0. VPC, Subnet 생성 1. 작업용 EC2 생성 2. eksctl create cluster 명령어로 eks 클러스터 생성 0. VPC, Subnet 생성 아래와 같이 VPC, Subnet, EC2 생성 1. 작업용 EC2 생성 Public subnet에 EC2 생성 IAM User 생성 및 AccessKey 발급, aws configure 1. IAM User생성 2. Permission 설정 (우선 administrator / 추후 AWS 관리형 Policy중 eksctl create cluster를 수행할 수 있는 것이 있는지 체크해보기) 3. Access Key 생성 4. 작업용으로 생성한 EC2 - aws configure 설정 # 자격 구성 설정 없이..
yeongki0944
'분류 전체보기' 카테고리의 글 목록 (7 Page)