CKA (Certified Kubernetes Administrator)/Kode Kloud 49

04.Application Lifecycle Management - Init Containers

Application Lifecycle Management 1) Rolling Updates and Rollbacks 2) Commands and Arguments 3) Env Variables 4) Secrets 5) Multi Container PODs 6) Init Containers 01. Identify the pod that has an initContainer configured. ask : blue Run the command kubectl describe pod blue It has an InitContainer called init-myservice controlplane ~ ✖ kubectl describe pod blue Name: blue Namespace: default Prio..

4.Application Lifecycle Management - Multi Container PODs

Application Lifecycle Management 1) Rolling Updates and Rollbacks 2) Commands and Arguments 3) Env Variables 4) Secrets 5) Multi Container PODs 6) Init Containers 01. Identify the number of containers created in the red pod. ask : 3 root@controlplane:~# kubectl get pod -o wide NAME READY STATUS RESTARTS AGE IP NODE NOMINATED NODE READINESS GATES app 1/1 Running 0 2m31s 10.244.0.6 controlplane fl..

4.Application Lifecycle Management - Secrets

Application Lifecycle Management 1) Rolling Updates and Rollbacks 2) Commands and Arguments 3) Env Variables 4) Secrets 5) Multi Container PODs 6) Init Containers 1. How many Secrets exist on the system? in the current(default) namespace ask : 1 controlplane ~ ➜ kubectl get secrets NAME TYPE DATA AGE default-token-f8d9m kubernetes.io/service-account-token 3 14m 2. How many secrets are defined in..

4.Application Lifecycle Management - Env Variables

APPLICATION LIFECYCLE MANAGEMENT, PRACTICE TEST ENV VARIABLES Application Lifecycle Management 1) Rolling Updates and Rollbacks 2) Commands and Arguments 3) Env Variables 4) Secrets 5) Multi Container PODs 6) Init Containers 1. How many PODs exist on the system? in the current(default) namespace ask : 1 controlplane ~ ➜ kubectl get pod NAME READY STATUS RESTARTS AGE webapp-color 1/1 Running 0 24..

4.Application Lifecycle Management - Commands and Arguments

LABS – CERTIFIED KUBERNETES ADMINISTRATOR WITH PRACTICE TESTS > APPLICATION LIFECYCLE MANAGEMENT > COMMANDS AND ARGUMENTS Application Lifecycle Management 1) Rolling Updates and Rollbacks 2) Commands and Arguments 3) Env Variables 4) Secrets 5) Multi Container PODs 6) Init Containers 1. How many PODs exist on the system? in the current(default) namespace controlplane ~ ➜ kubectl get pod NAME REA..

4.Application Lifecycle Management - Rolling Updates and Rollbacks

LABS – CERTIFIED KUBERNETES ADMINISTRATOR WITH PRACTICE TESTS > APPLICATION LIFECYCLE MANAGEMENT Application Lifecycle Management 1) Rolling Updates and Rollbacks 2) Commands and Arguments 3) Env Variables 4) Secrets 5) Multi Container PODs 6) Init Containers 01. We have deployed a simple web application. Inspect the PODs and the Services Wait for the application to fully deploy and view the app..

03.Logging & Monitoring - Managing Application Logs

LABS – CERTIFIED KUBERNETES ADMINISTRATOR WITH PRACTICE TESTS > LOGGING & MONITORING, PRACTICE TEST Managing Application Logs Logging & Monitoring 01. Monitor Cluster Components 02. Managing Application Logs 01. We have deployed a POD hosting an application. Inspect it. Wait for it to start. 02. A user - USER5 - has expressed concerns accessing the application. Identify the cause of the issue. I..

03.Logging & Monitoring - Monitor Cluster Components

LABS – CERTIFIED KUBERNETES ADMINISTRATOR WITH PRACTICE TESTS > LOGGING & MONITORING, PRACTICE TEST MONITOR CLUSTER COMPONENTS Logging & Monitoring 01. Monitor Cluster Components 02. Managing Application Logs 01. We have deployed a few PODs running workloads. Inspect them. Wait for the pods to be ready before proceeding to the next question. - Ok 02. Let us deploy metrics-server to monitor the P..

02. Scheduling - Multiple Schedulers

LABS – CERTIFIED KUBERNETES ADMINISTRATOR WITH PRACTICE TESTS > SCHEDULING – Multiple Schedulers Scheduling 01. Manual Scheduling 02. Labels and Selectors 03. Taints and Tolerations 04. Node Affinity 05. Resource Limits 06. DaemonSets 07. Static PODs 08. Multiple Schedulers 01. What is the name of the POD that deploys the default kubernetes scheduler in this environment? 정답 : kube-scheduler-cont..