CKADトレーニング資料のPDFバージョン:Linux Foundation Certified Kubernetes Application Developer Examは読みやすく、覚えやすく、印刷要求をサポートしているため、紙で印刷して練習することができます。 練習資料のソフトウェアバージョンは、シミュレーションテストシステムをサポートし、セットアップの時間を与えることには制限がありません。 このバージョンはWindowsシステムユーザーのみをサポートすることに注意してください。 CKAD試験問題のオンライン版は、Linux Foundationあらゆる種類の機器やデジタルデバイスに適しています。モバイルデータなしで練習することを条件に、オフラインでの運動をサポートします。 豊富な練習資料はお客様のさまざまなニーズに対応でき、これらのCKAD模擬練習にはすべて、Linux Foundationテストに合格するために知っておく必要がある新しい情報が含まれています。 あなたの個人的な好みに応じてそれらを選択することができます。

Linux Foundation CKAD 認定試験の出題範囲:

トピック出題範囲
トピック 1
  • 可観測性-Kubernetesでのデバッグを理解する
  • コンテナログを理解する
トピック 2
  • SecurityContextsを理解する
  • ConfigMapsを理解する
  • シークレットを作成して消費する
トピック 3
  • アプリケーションのリソース要件を定義する
  • ServiceAccountsを理解する
トピック 4
  • 状態の永続性-ストレージの永続的なボリュームクレームを理解する
トピック 5
  • Kubernetesでアプリケーションを監視する方法を理解する
  • LivenessProbesとReadinessProbesを理解する

>> CKAD模擬問題集 <<

CKAD技術試験、CKAD試験

スペシャリストは、CKADの実際の試験の内容が毎日更新されるかどうかを確認します。新しいバージョンがある場合は、ユーザーが最新のリソースを初めて利用できるように、それらが時間内にユーザーに送信されます。このようにして、当社のCKADガイド資料は、ユーザーのニーズを考慮に入れた非常に高速な更新レートを持つことができます。 CKAD学習資料を使用するユーザーは、新しいリソースと接触する最初のグループである必要があります。 CKAD練習問題から更新リマインダーを受け取ったら、時間内にバージョンを更新でき、重要なメッセージを見逃すことはありません。

Linux Foundation Certified Kubernetes Application Developer Exam 認定 CKAD 試験問題 (Q26-Q31):

質問 # 26
Context
CKAD-7a86d2ad8446c229625c13697ed6ff04.jpg
Context
A container within the poller pod is hard-coded to connect the nginxsvc service on port 90 . As this port changes to 5050 an additional container needs to be added to the poller pod which adapts the container to connect to this new port. This should be realized as an ambassador container within the pod.
Task
* Update the nginxsvc service to serve on port 5050.
* Add an HAproxy container named haproxy bound to port 90 to the poller pod and deploy the enhanced pod. Use the image haproxy and inject the configuration located at /opt/KDMC00101/haproxy.cfg, with a ConfigMap named haproxy-config, mounted into the container so that haproxy.cfg is available at /usr/local/etc/haproxy/haproxy.cfg. Ensure that you update the args of the poller container to connect to localhost instead of nginxsvc so that the connection is correctly proxied to the new service endpoint. You must not modify the port of the endpoint in poller's args . The spec file used to create the initial poller pod is available in /opt/KDMC00101/poller.yaml

正解:

解説:
Solution:
apiVersion: apps/v1
kind: Deployment
metadata:
name: my-nginx
spec:
selector:
matchLabels:
run: my-nginx
replicas: 2
template:
metadata:
labels:
run: my-nginx
spec:
containers:
- name: my-nginx
image: nginx
ports:
- containerPort: 90
This makes it accessible from any node in your cluster. Check the nodes the Pod is running on:
kubectl apply -f ./run-my-nginx.yaml
kubectl get pods -l run=my-nginx -o wide
NAME READY STATUS RESTARTS AGE IP NODE
my-nginx-3800858182-jr4a2 1/1 Running 0 13s 10.244.3.4 kubernetes-minion-905m my-nginx-3800858182-kna2y 1/1 Running 0 13s 10.244.2.5 kubernetes-minion-ljyd Check your pods' IPs:
kubectl get pods -l run=my-nginx -o yaml | grep podIP
podIP: 10.244.3.4
podIP: 10.244.2.5


質問 # 27
CKAD-0a0345f410df8cf51d74b0ac271300de.jpg
Context
It is always useful to look at the resources your applications are consuming in a cluster.
Task
* From the pods running in namespace cpu-stress , write the name only of the pod that is consuming the most CPU to file /opt/KDOBG030l/pod.txt, which has already been created.

正解:

解説:
See the solution below.
Explanation
Solution:
CKAD-41b3e18eabce5007212bb3bdb8a51470.jpg


質問 # 28
CKAD-6d11ea0ece1ead2b3f02fc0be5e03550.jpg
Task:
1- Update the Propertunel scaling configuration of the Deployment web1 in the ckad00015 namespace setting maxSurge to 2 and maxUnavailable to 59
2- Update the web1 Deployment to use version tag 1.13.7 for the Ifconf/nginx container image.
3- Perform a rollback of the web1 Deployment to its previous version

正解:

解説:
See the solution below.
Explanation
Solution:
CKAD-32278e4aec230f4491eb9950a6904836.jpg
Text Description automatically generated
CKAD-70174b7223469f0dd538140ae18c26ad.jpg
CKAD-30e91d98342bdf9e03645e2e78033dc1.jpg


質問 # 29
Refer to Exhibit.
CKAD-8d285adf1774e4c21603f78151d12a51.jpg
Task
Create a new deployment for running.nginx with the following parameters;
* Run the deployment in the kdpd00201 namespace. The namespace has already been created
* Name the deployment frontend and configure with 4 replicas
* Configure the pod with a container image of lfccncf/nginx:1.13.7
* Set an environment variable of NGINX__PORT=8080 and also expose that port for the container above

正解:

解説:
Solution:
CKAD-730f2a791454206dd4d24daecdbc2deb.jpg
CKAD-8104140a0bfbfa220ffdee11dfe50298.jpg
CKAD-1e88431770d85cce112a81815bcedc10.jpg
CKAD-bbefb37aefd762896c3f00ac70455e8b.jpg


質問 # 30
Refer to Exhibit.
CKAD-8e9767761d04eb07a678d8e45fc470d6.jpg
Task:
The pod for the Deployment named nosql in the craytisn namespace fails to start because its container runs out of resources.
Update the nosol Deployment so that the Pod:
1) Request 160M of memory for its Container
2) Limits the memory to half the maximum memory constraint set for the crayfah name space.
CKAD-949cda440be491a089973db6dbf837eb.jpg

正解:

解説:
Solution:
CKAD-de030a64eae97b517fda9e49dc10ac25.jpg
CKAD-74abe3ea048ff0190e580d4dd31b6026.jpg
CKAD-ec6b4449a4b83c922a831bcfe8388de8.jpg
CKAD-611570b46e52063bac2c7c710b6cdfc4.jpg


質問 # 31
......

あらゆる種類の問題に取り組まれる可能性があります。時には、何かを下に置いて他の問題に対処する必要があります。後者はより緊急であり、すぐに実行する必要があります。 CKADトレーニングガイドの助けを借りて、あなたの夢がもう遅れることはありません。なぜなら、私たちはクライアントがよりゆっくりと勉強するのを支援するインテリジェントなアプリケーションと高効率のメリットを持っているからです。 CKADの実際の試験で20〜30時間準備する場合、CKAD試験はあなたの前で簡単になります。

CKAD技術試験: https://www.goshiken.com/Linux-Foundation/CKAD-mondaishu.html

ExolTechUSexo_d4bfb1a7540fafacb32fce68ea751834.jpg