1. udemy의 mumshad 쌤 강의 개념 65%정도 듣고, 연습문제를 30%정도 풀고, mock-exam과 lightening lab은 10~15분안에 풀 수 있을만큼 준비했다.(4개의 시험을 5번정도 풀었나?) 시험이 끝나고 든 생각은, kodekloud의 문제들이 쉽더라도 개념에 대해서 정확히 알아야지 시험때 다른 문제가 나왔을때 당황하지 않을 것 같다는 생각을 했다. 1-1. 또한 내 자신의 발전을 위해서라도(회사에서 쿠버네티스 쓰는중) 개념 강의는 2회독, 3회독 해야한다는 생각이 들었다. 왜냐하면 이번에 시험볼때 사실 헷깔리는 것들이 여러개 있었기 때문이다. 쿠버네티스에 대해서 잘 이해하고 있다면 아무리 어려운 응용문제가 나와도 틀리지 않을테니 말이다. 1-2. 놀 시간은 없는 것이었다. ..
이 글은 udemy의 강의를 들으며 자격증 공부 목적으로 내용을 정리한 글입니다. https://www.udemy.com/course/certified-kubernetes-administrator-with-practice-tests Certified Kubernetes Administrator (CKA) Practice Exam Tests Prepare for the Certified Kubernetes Administrators Certification with live practice tests right in your browser - CKA www.udemy.com [Docker Storage] Stoage Drivers manage storage on images and containers Vo..
1.PV생성 apiVersion: v1 kind: PersistentVolume metadata: name: pv-local labels: type: local spec: storageClassName: manual capacity: storage: 5Gi accessModes: - ReadWriteOnce hostPath: path: "/mnt/data" 2.PVC생성 apiVersion: v1 kind: PersistentVolumeClaim metadata: name: pvc-local-testi namespace: operations spec: storageClassName: manual accessModes: - ReadWriteOnce resources: requests: storage: 1G..
Bridge Adapter(브릿지 어뎁터) PC가 공유기로부터 IP를 받는 경우 VM또한 공유기로부터 IP를 받음 --> 개별적으로 IP를 할당함 결론: vm이 바로 공유기와 연결됨 호스트 PC와 동일한 네트워크 대역의 IP를 갖음 별로의 PC가 또 하나 생겨서 네트워크에 연결된 것과 같은 효과 클라이언트와 서버 기능 NAT 로컬 PC에서 Virtualbox Host-Only Network IP (192.168.56.1)을 통해 VM접속할 수 있음 왜냐하면 192.168.56.1이 vm의 내부ip로 연결되기 때문 --> 호스트 PC를 통해 외부 네트워크와 통신가능 그렇기에 공유기랑 상관이 없는 구조임 포트포워딩이 동반될 수 있음 자체 DHCP서버를 띄워 내부 네트워크 대역 할당 및 통신 공유기에 연결된 ..
이 글은 udemy의 강의를 들으며 자격증 공부 목적으로 내용을 정리한 글입니다. https://www.udemy.com/course/certified-kubernetes-administrator-with-practice-tests Certified Kubernetes Administrator (CKA) Practice Exam Tests Prepare for the Certified Kubernetes Administrators Certification with live practice tests right in your browser - CKA www.udemy.com [Security Primitives] Who can access the cluster Authentication -Files - U..
이 글은 udemy의 강의를 들으며 자격증 공부 목적으로 내용을 정리한 글입니다. https://www.udemy.com/course/certified-kubernetes-administrator-with-practice-tests Certified Kubernetes Administrator (CKA) Practice Exam Tests Prepare for the Certified Kubernetes Administrators Certification with live practice tests right in your browser - CKA www.udemy.com [OS Upgrade] -if the node was down for more than 5 minutes, then the pods ..