RedHat Red Hat Certified Specialist in OpenShift Administrationはベンダー公式の認定資格として、スキルの証明に高い信頼性があります。CertJukenのEX280練習問題は公式の出題範囲に沿って構成されており、資格取得への近道となります。
RedHat EX280 試験概要:
| 認定ベンダー: | Red Hat |
|---|---|
| 試験名: | Red Hat Certified OpenShift Administrator 試験 |
| 試験番号: | EX280 |
| 認定の有効期間: | 3年間 |
| 試験形式: | 実務実践形式, シナリオ設定型, 実習環境での作業課題 |
| 対応言語: | 英語, 日本語, 韓国語, 簡体字中国語 |
| 出題数: | 15~17問の実務実践形式の課題 |
| 合格点: | 300点満点中210点 |
| 関連資格: | Red Hat Certified Architect (RHCA) Red Hat Certified System Administrator (RHCSA) |
| 試験時間: | 180 分 |
| 受験料: | 400米ドル |
| 推奨トレーニング: | DO280 - OpenShift Administration II: Operating a Production Kubernetes Cluster DO180 - OpenShift Administration I: Containers & Kubernetes |
| 受験申し込み: | Red Hat Certification Central |
| サンプル問題: | ![]() |
| 受験方法: | オンライン監督付き受験または認定試験会場での受験 |
| 前提条件: | 推奨条件:RHCSA 資格の保有、DO180 および DO280 コースの修了または同等の実務経験、基本的な Linux 管理スキルの習得 |
| 公式シラバスのURL: | https://www.redhat.com/en/services/training/red-hat-certified-openshift-administrator-exam |
RedHat EX280 試験シラバストピック:
| セクション | 比重 | 目標 |
|---|---|---|
| アプリケーションのデプロイおよび管理 | 25% | - 複数のソースからのアプリケーションのデプロイ
|
| Kubernetes リソースの操作 | 25% | - リソース属性の検索、絞り込み、変更
|
| 認証および認可の管理 | 15% | - ユーザー、グループ、権限の管理
|
| ネットワークおよびアクセスの設定 | 15% | - ソフトウェア定義ネットワークのトラブルシューティング - サービスの外部公開
|
| OpenShift Container Platform の管理 | 20% | - WebコンソールおよびCLIによるクラスターの管理・設定
|
EX280試験で受験者がよく抱く疑問
EX280は、RedHatが実施する「Red Hat Certified Specialist in OpenShift Administration」を取得するための認定試験です。認定レベルはスペシャリストで、実務に即した知識とスキルが問われます。Red Hat Certified Architect (RHCA)、Red Hat Certified System Administrator (RHCSA)などの関連認定へのステップとしても位置づけられており、キャリアアップを目指す方に広く選ばれています。CertJukenの練習問題を活用すれば、試験の全体像を把握しながら計画的に対策を進められます。
EX280試験の問題数は15~17問の実務実践形式の課題、制限時間は180 分です。1問あたりに使える時間を意識すると、序盤で時間を使いすぎないペース配分が重要になります。見直しの時間を確保するためにも、CertJukenの模擬試験で時間を計りながら解く練習を重ね、本番と同じ時間感覚を身につけておくと安心です。
EX280試験の合格基準点は300点満点中210点で、受験料は400米ドルです。万が一不合格になった場合、再受験には再度全額の受験料が必要になります。そのため、本番の前にCertJukenの練習問題で安定して合格点を超えられるかを確認してから受験することをおすすめします。
はい。CertJukenではEX280練習問題の無料サンプル(PDFデモ)を用意しており、内容や使い勝手を確かめてから購入を判断できます。購入後は365日間の無料更新が付き、更新期間の終了後は50%割引で継続更新を利用できます。
CertJukenでは「返金保証」を用意しています。購入後60日以内にEX280試験を受験して不合格だった場合、受験票の写しと公式のスコアレポート(Score Report)のPDFを試験後2日以内に提出すれば、7日以内に全額返金の手続きが完了します。なお、受験者名と購入時の支払者名が一致している必要があり、購入から3日以内の受験や、実際に受験しなかった場合は対象外です。返金の代わりに、同等の試験対策教材2つを無料で受け取り、購入済み製品の更新サービスを継続する選択も可能です。商品は購入後すぐにダウンロードでき、メールでも1分以内にお届けします。2時間経っても届かない場合はカスタマーサポートまでご連絡ください。インストールできるパソコンの台数に制限はありません。
EX280試験の出題範囲は5の分野に分かれています。主な分野はアプリケーションのデプロイおよび管理(25%)、ネットワークおよびアクセスの設定(15%)、OpenShift Container Platform の管理(20%)です。各分野の詳細な出題項目は、このページ上部の出題範囲一覧で確認できます。
RedHat Red Hat Certified Specialist in OpenShift Administration 認定 EX280 試験問題:
Managing Group
Task information Details:
Create the groups site-users and guest-users .
Add qwerty to guest-users .
Add harry and susan to site-users .
Grant edit to site-users on test .
Grant view to guest-users on demo .
See the solution below in Explanation.
Explanation:
Solution:
* Create the groups:
oc adm groups new site-users
oc adm groups new guest-users
* Add users to groups:
oc adm groups add-users guest-users qwerty
oc adm groups add-users site-users harry susan
* Grant edit role on test to site-users:
oc policy add-role-to-group edit site-users -n test
* Grant view role on demo to guest-users:
oc policy add-role-to-group view guest-users -n demo
* Verify:
oc get groups
oc describe group site-users
oc describe group guest-users
oc get rolebinding -n test
oc get rolebinding -n demo
This task measures practical administration of OpenShift groups and project-scoped RBAC assignments.
Scale an application manually
Manually scale the minion application in the gru project to a total of 5 replicas.
See the solution below in Explanation.
Explanation:
Solution:
$ oc project gru
$ oc get pods
$ oc get all | grep deployment
$ oc scale --replicas=5 deployment.apps/minion
$ oc get pods
Configure a service account
Configure a service account in the apples project to meet the following requirements:
The name of the account is ex280sa
The account allows pods to be run as any available user
See the solution below in Explanation.
Explanation:
Solution:
$ oc project apples
$ oc create sa ex280sa
$ oc adm policy add-scc-to-user anyuid -z ex280sa
Scale an application automatically
Automatically scale the hydra application deployment configuration in the lerna project with the following requirements:
Minimum number of replicas: 6 Maximum number of replicas: 9
Target average CPU utilization: 60 percent Container CPU resource request: 25m Container CPU resource limit: 100m
See the solution below in Explanation.
Explanation:
Solution:
$ oc project lerna
$ oc get pods
$ oc get all | grep deployment
$ oc autoscale deployment.apps/hydra --max=9 --min=6 --cpu-percent=60
$ oc get hpa
$ oc set resources deployment.apps/hydra --limits=cpu=100m -- requests=cpu=25m
$ oc describe deployment.apps/hydra | grep Limits -A3




日*栞
Suitei
中瀬**
Kawashima
