RedHat EX280 Practice Exam Questions & Answers

5 Free Questions · Last reviewed: August 29, 2026 · Prepared & Reviewed by the ValidExamDumps Editorial Team

Exam Facts

RedHat EX280 Exam Details

Key details for this exam, checked against the published exam outline

33 Practice Questions (Our Bank)
180 minutes Exam Duration
210 out of 300 Passing Score
USD 500 Exam Fee
Exam Code
EX280
Full Name
Red Hat Certified System Administrator in OpenShift
Issuing Body
Red Hat
Question Format (Our Bank)
Multiple Choice
Delivery
Online proctored or at a testing centre
Eligibility
No formal prerequisites required, but solid understanding of Linux systems, container concepts, and Kubernetes fundamentals is recommended
Validity
3 years
Practice Questions

Free EX280 Practice Questions

Each question shows the correct answer and an explanation of why it is right

VA
ValidExamDumps Editorial Team Every question and its answer is checked by our EX280 exam preparation team, who also write the explanation shown with each one. How we research and review these pages

SIMULATION

Task 1

Manage Identity Provider

Task information Details:

Create the following HTPasswd users: bob, qwerty, john, armstrong, natasha, harry, susan.

Create a secret from the HTPasswd file in openshift-config.

Configure cluster OAuth to use the HTPasswd identity provider.

Restart the OAuth pods so the new authentication configuration takes effect.

Correct Answer: A
Explanation

Solution:

Create the initial HTPasswd file with the first user:

htpasswd -c -B -b /tmp/htpass.txt bob indionce

Add the remaining users:

htpasswd -b /tmp/htpass.txt qwerty catalog

htpasswd -b /tmp/htpass.txt john john123

htpasswd -b /tmp/htpass.txt armstrong natasha123

htpasswd -b /tmp/htpass.txt natasha arthstrong

htpasswd -b /tmp/htpass.txt harry harry123

htpasswd -b /tmp/htpass.txt susan susuan123

Create the secret in openshift-config:

oc create secret generic ex280-secure --from-file=htpasswd=/tmp/htpass.txt -n openshift-config

Edit OAuth and add the HTPasswd identity provider:

oc edit oauth cluster

Use a valid structure like this:

spec:

identityProviders:

- name: ex280-idp-secure

mappingMethod: claim

type: HTPasswd

htpasswd:

fileData:

name: ex280-secure

Save and exit.

Restart OAuth pods:

oc delete pod -n openshift-authentication -l app=oauth-openshift

Verify:

oc get pods -n openshift-authentication

oc get oauth cluster -o yaml

This task validates OpenShift local authentication configuration through HTPasswd and cluster OAuth integration.

SIMULATION

Configure a secret

Configure a secret in the math project with the following requirements: The name of the secret is: magic

The secret defines a key with name: decoder_ring The secret defines the key with value:

XpWy9KdcP3Tr9FFHGQgZgVRCKukQdrQsbcl0c2ZYhDk=

Correct Answer: A
Explanation

Solution:

$ oc project math

$ oc create secret generic magic --from-literal key=decoder_ring --from- literal value=XpWy9KdcP3Tr9FFHGQgZgVRCKukQdrQsbcl0c2ZYhDk=

$ oc get secret -n math

SIMULATION

Configure project permissions

Configure your OpenShift cluster to meet the following requirements: The following projects exist:

apollo manhattan gemini bluebook titan

The user account armstrong is an administrator for project apollo and project gemini

The user account wozniak can view project titan but not administer or delete it

Correct Answer: A
Explanation

Solution:

$ oc new-project apollo

$ oc new-project manhattan

$ oc new-project gemini

$ oc new-project bluebook

$ oc new-project titan

$ oc adm policy add-role-to-user admin armstrong -n apollo

$ oc adm policy add-role-to-user admin armstrong -n gemini

$ oc adm policy add-role-to-user view wozniak -n titan

SIMULATION

Configure a secure route

Configure the oxcart application in the area51 project with the following requirements:

The application uses a route called oxcart

The application uses a CA signed certificate with the following subject fields:

/C=US/ST=NV/L=Hiko/O=CIA/OU=USAF/CN=classified.apps.domainxx.example.com The application is reachable only at the following address: https://classified.apps.domainxx.example.com

The application produces output

A utility script called newcert has been provided to create the CA signed certificate. You may enter the certificate parameters manually or pass the subject as a parameter.

Your certificate signing request will be uploaded to the CA where it will immediately be signed and then downloaded to your current directory.

Correct Answer: A
Explanation

Solution:

$ oc project area51

$ oc get pods

$ oc get all | grep deployment

$ oc get route

$ oc delete route oxcart

$ openssl genrsa -out ex280.key 2048

$ openssl req -new -key ex280.key -out ex280.csr -subj '/C=US/ST=NV/L=Hiko/O=CIA/OU=USAF/CN=classified.apps.domainxx.example.com'

$ openssl x509 -req -in ex280.csr -signkey ex280.key -out ex280.crt

$ oc create route edge oxcart --service oxcart --key ex280.key --cert ex280.crt --hostname classified.apps.domainxx.example.com

$ oc get route

$ oc get svc

SIMULATION

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

Correct Answer: A
Explanation

Solution:

$ oc project apples

$ oc create sa ex280sa

$ oc adm policy add-scc-to-user anyuid -z ex280sa

Get Full Access

33 questions covering all exam domains, starting from $20

Study Guide

What the RedHat EX280 Exam Covers

Exam domains verified against: Official RedHat EX280 exam guide, last checked August 2026.

Domain 1: Manage OpenShift Container Platform

Administer OpenShift clusters through the web console and command-line interface. Create and delete projects, examine container images, and query Kubernetes resources. Monitor events and logs to maintain cluster health and troubleshoot common issues.

Domain 2: Work with resource manifests

Deploy applications from YAML manifests and templates. Use Kustomize for application configuration management. Create and configure secrets and ConfigMaps for application data and sensitive information.

Sample question from this domain above: Q2

Domain 3: Deploy applications

Deploy and manage applications using templates and Helm charts. Work with replica sets, labels, and selectors. Configure services and expose applications to external access through routes.

Domain 4: Manage authentication and authorization

Configure the HTPasswd identity provider for authentication. Create, delete, and manage users and groups. Modify permissions and manage user access to cluster resources.

Sample questions from this domain above: Q1Q3

Domain 5: Configure network security

Configure networking components and troubleshoot software-defined networking. Create and edit external routes. Secure traffic with TLS certificates and configure network policies for application isolation.

Sample question from this domain above: Q4

Domain 6: Expose non-HTTP/SNI applications

Configure load balancer services for non-HTTP protocols. Manage external application access for services that do not use standard HTTP or SNI routing.

Domain 7: Enable developer self-service

Configure cluster and project resource quotas to control resource consumption. Set resource requirements and limit ranges for projects. Create project templates to standardize deployments.

Domain 8: Manage OpenShift operators

Install, uninstall, and delete operators to extend cluster functionality. Manage operator lifecycle and coordinate operator-managed resources.

Domain 9: Configure application security

Configure service accounts and security context constraints to control application permissions. Manage access to Kubernetes APIs. Deploy jobs and cron jobs for scheduled tasks.

Sample question from this domain above: Q5

FAQ

EX280 Exam FAQ

Common questions about the exam itself

What experience do I need before taking EX280?
There are no formal prerequisites, but you should have solid working knowledge of Linux systems, container concepts, and Kubernetes fundamentals. Hands-on experience with OpenShift environments will significantly improve your chances of passing.
Is EX280 harder than other Red Hat exams?
EX280 is a performance-based exam that requires you to complete real-world OpenShift administration tasks under time pressure. Many candidates find the 180-minute window tight given the breadth of tasks, so practical experience and speed matter more than multiple-choice knowledge.
How long should I spend preparing for EX280?
Preparation time varies by your experience level. If you have Linux and container experience, aim for 4 to 8 weeks of focused study combining official Red Hat courses, hands-on labs, and documentation review. Those new to OpenShift may need 3 to 4 months.
What is the hardest domain on EX280?
Network configuration and security policies often challenge candidates because the command syntax requires precision and the concepts layer several OpenShift networking models together. Spend extra time on Routes, Services, network policies, and TLS certificate configuration.
What does the exam actually involve on test day?
You receive 180 minutes to complete 15 to 17 hands-on tasks on a live OpenShift cluster. There are no multiple-choice questions. You must perform real administrative operations through the command line and web console, and your work is evaluated against objective criteria.
What is the passing score for EX280?
You need to score 210 out of 300 points, which is 70 percent, to pass the exam. Partial credit is awarded for correctly completing individual task steps, so you do not need to complete every task perfectly.
Can I retake EX280 if I fail?
Yes. Red Hat allows retakes, though you must pay the full USD 500 exam fee for each attempt. Some training bundles include one free retake within 12 months of purchase. Contact Red Hat directly about retake policies with your specific purchase.
How long does the EX280 certification stay valid?
The Red Hat Certified System Administrator in OpenShift credential is valid for 3 years from the date you pass. You can renew by taking a higher-level Red Hat OpenShift exam, such as EX380 or EX480, or by retaking EX280 before expiration.
How does EX280 fit into the Red Hat OpenShift certification path?
EX280 leads to the Red Hat Certified System Administrator in OpenShift credential and counts as one component toward the Red Hat Certified Architect in OpenShift. After EX280 you can pursue advanced exams like EX380 for advanced cluster administration.
What job role does EX280 prepare me for?
EX280 is designed for system administrators, cluster operators, site reliability engineers, and systems architects who deploy and maintain OpenShift Container Platform in production. Holders typically work in DevOps, platform engineering, or cloud infrastructure roles.