본문 바로가기

kodekloud6

[cka]Network- Networking weave 1.How many Nodes are part of this cluster? Including master and worker nodes k get nodes A) 2 2. What is the Networking Solution used by this cluster? cat cat /etc/cni/net.d/10-weave.conflist A) weave 3.How many weave agents/peers are deployed in this cluster? k get pods -A A) 2 4. On which nodes are the weave peers present? A) one on every noe=de 5. Identify the name of the bridge network/inter.. 2022. 8. 3.
[cka]kodekloud-DaemonSets 1.How many DaemonSets are created in the cluster in all namespaces? Check all namespaces # k get daemonsets.apps -A : -A 모든 네임스페이스 전부 A) 2 2. Which namespace are the DaemonSets created in? # k get daemonsets.apps -A A) kube-system 3. Which of the below is a DaemonSet? # k get daemonsets.apps -A : kube-proxy, kube-flannel-ds 중 한가지 A) kube-flannel-ds 4. On how many nodes are the pods scheduled by .. 2022. 6. 9.
[cka]kodekloud-services 이번에는 services 관련된 문제를 풀어보겠습니다. 1. How many Services exist on the system? # k get services A) 1 2.That is a default service created by Kubernetes at launch. A) ok : 별 내용 없음 3.What is the type of the default kubernetes service? # k get services : 위의 내용 참고 A) ClusterIP 4. What is the targetPort configured on the kubernetes service? # k describe services kubernetes A) 6443 5.How many labels are conf.. 2022. 6. 7.
[cka]kodekloud-Deployments 이번에는 Deployments 관련된 예제를 풀어보도록 하겠습니다. 1. How many PODs exist on the system? # k get pods A) 0 2. How many ReplicaSets exist on the system? # k get rs A) 0 3.How many Deployments exist on the system? # k get deployments.apps : deployments 의 약어는 ds A) 0 4. How many Deployments exist on the system now? # k get deployments.apps 5. How many ReplicaSets exist on the system now? # k get rs A) 1 6.How m.. 2022. 6. 7.
[cka]kodekloud-pods * 기초 설정하기 모든 명령어를 일일이 다 입력하기는 내 손을 믿을 수가 없다 그렇기에 자동완성기는을 사용한다. 상위 4줄의 명령어를 통해 자동완성 기능을 제공한다. kodekloud 의 첫번째 pod 문제를 보자. 1. How many pods exist on the system? # k get pods 2. Create a new pod with the nginx image.(Image name: nginx) # k run test --image=nginx 3.How many pods are created now? # k get pods A) 4 4.What is the image used to create the new pods? # k describe pods newpods- A) busybox .. 2022. 6. 7.
[cka]kodekloud -시작하기에 앞서... 안녕하세요 udemy 에서 뭄샤드 강의를 수강하면 kodekloud 를 활용해 시험 환경과 동일하게 이용할 수 있습니다. 대략적으로 이런 형식으로 확인 할 수 있습니다. 모든 문제를 다 작성할 수는 없지만 가능한한 최대로 블로그에 그 과정을 담아보려 합니다. *이미지관련 저작권 "Certified Kubernetes Administrator (CKA) with Practice Test" 에 있습니다. 2022. 6. 7.