반응형 전체 글292 Udemy CKA 강의 정리 116: Self Healing Applications 해당 내용은 Udemy의 Certified Kubernetes Administrator (CKA) with Practice Tests 강의를 공부한 내용입니다. 내용을 그대로 번역하기보다는, 제가 이해하기 쉬운 대로 수정한 부분들이 있습니다. ⚠️ 영어 독해가 많이 부족합니다. 틀린 내용이 있으면 알려주시면 감사하겠습니다. Kubernetes는 ReplicaSet 및 replication 컨트롤러를 통해 self-healing applications을 지원합니다. replication 컨트롤러는 POD 내의 애플리케이션이 충돌할 때 POD가 자동으로 재생성되도록 하는 데 도움을 줍니다. 애플리케이션의 충분한 replicas이 항상 실행되도록 하는 데 도움이 됩니다. Kubernetes는 POD 내에서 실.. 2023. 1. 13. Udemy CKA 강의 정리 110: Practice Test - Multi Container PODs 해당 내용은 Udemy의 Certified Kubernetes Administrator (CKA) with Practice Tests 강의를 공부한 내용입니다. 내용을 그대로 번역하기보다는, 제가 이해하기 쉬운 대로 수정한 부분들이 있습니다. ⚠️ 영어 독해가 많이 부족합니다. 틀린 내용이 있으면 알려주시면 감사하겠습니다. Q1. Identify the number of containers created in the red pod. Q2. Identify the name of the containers running in the blue pod. Q3. Create a multi-container pod with 2 containers. Use the spec given below. If the pod .. 2023. 1. 13. Udemy CKA 강의 정리 111: Solution - Multi Container PODs (optional) 해당 내용은 Udemy의 Certified Kubernetes Administrator (CKA) with Practice Tests 강의를 공부한 내용입니다. 내용을 그대로 번역하기보다는, 제가 이해하기 쉬운 대로 수정한 부분들이 있습니다. ⚠️ 영어 독해가 많이 부족합니다. 틀린 내용이 있으면 알려주시면 감사하겠습니다. Q1. Identify the number of containers created in the red pod. $ kubectl get pod red Q2. Identify the name of the containers running in the blue pod. $ kubectl describe pod blue Q3. Create a multi-container pod with 2.. 2023. 1. 13. Udemy CKA 강의 정리 115: Solution - Init Containers (optional) 해당 내용은 Udemy의 Certified Kubernetes Administrator (CKA) with Practice Tests 강의를 공부한 내용입니다. 내용을 그대로 번역하기보다는, 제가 이해하기 쉬운 대로 수정한 부분들이 있습니다. ⚠️ 영어 독해가 많이 부족합니다. 틀린 내용이 있으면 알려주시면 감사하겠습니다. (보충필요) Q1. Identify the pod that has an initContainer configured. $ kubectl get pods $ kubectl describe pods Q2. What is the image used by the initContainer on the blue pod? $ kubectl describe pods blue Q3. What is t.. 2023. 1. 13. Udemy CKA 강의 정리 114: Practice Test - Init Containers Q1. Identify the pod that has an initContainer configured. Q2. What is the image used by the initContainer on the blue pod? Q3. What is the state of the initContainer on pod blue? Q4. Why is the initContainer terminated? What is the reason? Q5. We just created a new app named purple. How many initContainers does it have? Q6. What is the state of the POD? Q7. How long after the creation of the PO.. 2023. 1. 13. Udemy CKA 강의 정리 105: Practice Test - Secrets Q1. How many Secrets exist on the system? Q2. How many secrets are defined in the dashboard-token secret? Q3. What is the type of the dashboard-token secret? Q4. Which of the following is not a secret data defined in dashboard-token secret? Q5. We are going to deploy an application with the below architecture. We have already deployed the required pods and services. Check out the pods and servic.. 2023. 1. 13. Udemy CKA 강의 정리 106: Solution - Secrets (optional) 해당 내용은 Udemy의 Certified Kubernetes Administrator (CKA) with Practice Tests 강의를 공부한 내용입니다. 내용을 그대로 번역하기보다는, 제가 이해하기 쉬운 대로 수정한 부분들이 있습니다. ⚠️ 영어 독해가 많이 부족합니다. 틀린 내용이 있으면 알려주시면 감사하겠습니다. Q1. How many Secrets exist on the system? 답: 1 Q2. How many secrets are defined in the dashboard-token secret? 답: 3 Q3. What is the type of the dashboard-token secret? 답: kubernetes.io/service-account-token Q4. Which.. 2023. 1. 12. Udemy CKA 강의 정리 113: Init Containers 해당 내용은 Udemy의 Certified Kubernetes Administrator (CKA) with Practice Tests 강의를 공부한 내용입니다. 내용을 그대로 번역하기보다는, 제가 이해하기 쉬운 대로 수정한 부분들이 있습니다. ⚠️ 영어 독해가 많이 부족합니다. 틀린 내용이 있으면 알려주시면 감사하겠습니다. 멀티 컨테이너 파드에서 각 컨테이너는 POD의 수명 주기 동안 활성 상태를 유지하는 프로세스를 실행할 것으로 예상됩니다. 예를 들어 앞서 언급한 웹 애플리케이션과 로깅 에이전트가 있는 멀티 컨테이너 파드에서 두 컨테이너는 항상 활성 상태를 유지해야 합니다. 로그 에이전트 컨테이너에서 실행 중인 프로세스는 웹 애플리케이션이 실행되는 동안 활성 상태를 유지해야 합니다. 그 중 하나라도 실.. 2023. 1. 12. 이전 1 ··· 21 22 23 24 25 26 27 ··· 37 다음 반응형