- 33 Actual Exam Questions
- Compatible with all Devices
- Printable Format
- No Download Limits
- 90 Days Free Updates
Get All Red Hat Certified OpenShift Administrator Exam Questions with Validated Answers
| Vendor: | RedHat |
|---|---|
| Exam Code: | EX280 |
| Exam Name: | Red Hat Certified OpenShift Administrator |
| Exam Questions: | 33 |
| Last Updated: | May 24, 2026 |
| Related Certifications: | Red Hat Openshift Certifications |
| Exam Tags: |
Looking for a hassle-free way to pass the RedHat Red Hat Certified OpenShift Administrator exam? DumpsProvider provides the most reliable Dumps Questions and Answers, designed by RedHat certified experts to help you succeed in record time. Available in both PDF and Online Practice Test formats, our study materials cover every major exam topic, making it possible for you to pass potentially within just one day!
DumpsProvider is a leading provider of high-quality exam dumps, trusted by professionals worldwide. Our RedHat EX280 exam questions give you the knowledge and confidence needed to succeed on the first attempt.
Train with our RedHat EX280 exam practice tests, which simulate the actual exam environment. This real-test experience helps you get familiar with the format and timing of the exam, ensuring you're 100% prepared for exam day.
Your success is our commitment! That's why DumpsProvider offers a 100% money-back guarantee. If you don’t pass the RedHat EX280 exam, we’ll refund your payment within 24 hours no questions asked.
Don’t waste time with unreliable exam prep resources. Get started with DumpsProvider’s RedHat EX280 exam dumps today and achieve your certification effortlessly!
SIMULATION
Deploy an application
Deploy the application called oranges in the apples project so that the following conditions are true:
The application uses the ex280sa service account
No additional configuration components have been added or removed The application produces output
Solution:
$ oc project mercury
$ oc get pods
$ oc get all | grep deploy
$ oc describe deployment.apps/atlas | grep -L memory
$ oc set resources deployment.apps/atlas --resources=memory=80Mi
SIMULATION
Task 2
Manage Cluster Project and Permission
Task information Details:
Create projects apollo, test, and demo.
Grant bob the cluster-admin role.
Prevent ordinary authenticated users from self-provisioning projects.
Allow john to create projects.
Give natasha view-only access to test and apollo.
Give armstrong admin access to apollo.
Remove the kubeadmin user secret.
Solution:
Create the projects:
oc new-project apollo
oc new-project test
oc new-project demo
Grant cluster-admin to bob:
oc adm policy add-cluster-role-to-user cluster-admin bob
Disable normal self-provisioning for authenticated users:
oc adm policy remove-cluster-role-from-group self-provisioner system:authenticated:oauth
Allow john to self-provision:
oc adm policy add-cluster-role-to-user self-provisioner john
Give natasha view access in test and apollo:
oc policy add-role-to-user view natasha -n test
oc policy add-role-to-user view natasha -n apollo
Give armstrong admin in apollo:
oc policy add-role-to-user admin armstrong -n apollo
Remove kubeadmin secret:
oc delete secret kubeadmin -n kube-system
Verify permissions:
oc adm policy who-can create projectrequests
oc describe rolebinding.rbac -n apollo
oc describe rolebinding.rbac -n test
This task tests core OpenShift administration around project lifecycle control, cluster-level RBAC, and decommissioning default bootstrap credentials.
SIMULATION
Task 6
Scale Application Manually
Task information Details:
Scale the httpd deployment to 5 replicas.
Solution:
Scale the deployment:
oc scale deployment httpd --replicas=5
Verify:
oc get deployment httpd
oc get pods -l app=httpd
Confirm the desired, current, and available replica counts match.
This task checks direct workload scaling using the OpenShift CLI.
SIMULATION
Deploy an application
Deploy the application called rocky in the bullwinkle project so that the following conditions are true:
The application is reachable at the following address: http://rocky.apps.domainXX.example.com
The application produces output
Solution:
$ oc project bullwinkle
$ oc get pods
$ oc get all | grep deploy
$ oc get nodes
$ oc describe nodes | grep -i taint
$ oc adm taint nodes worker0 key1=value1:NoSchedule-
$ oc adm taint nodes worker1 key1=value1:NoSchedule-
$ oc describe nodes | grep -i taint
$ oc get route
$ oc delete route rocky
$ oc expose svc rocky --hostname rocky.apps.domainxx.example.com
$ oc get route
SIMULATION
Task 18
Create a PV and PVC
Task information Details:
Create a PersistentVolume named landing-pv with 1Gi, ReadOnlyMany, NFS backend, and Retain reclaim policy.
Create a PersistentVolumeClaim named landing-pvc requesting 1Gi, ReadOnlyMany, and storage class nfs2.
Solution:
Create landing-pv.yaml:
apiVersion: v1
kind: PersistentVolume
metadata:
name: landing-pv
spec:
capacity:
storage: 1Gi
accessModes:
- ReadOnlyMany
nfs:
path: /open001
server: 192.168.2.2
persistentVolumeReclaimPolicy: Retain
Apply it:
oc apply -f landing-pv.yaml
Create landing-pvc.yaml:
apiVersion: v1
kind: PersistentVolumeClaim
metadata:
name: landing-pvc
spec:
accessModes:
- ReadOnlyMany
resources:
requests:
storage: 1Gi
storageClassName: nfs2
Apply it:
oc apply -f landing-pvc.yaml
Verify:
oc get pv
oc get pvc
oc describe pv landing-pv
oc describe pvc landing-pvc
This task validates persistent storage provisioning and claim binding concepts.
Security & Privacy
Satisfied Customers
Committed Service
Money Back Guranteed