Passed EX380 exam questions which are valid in today. Very helpful.
Our IT experts update the RedHat Red Hat Certified Specialist in OpenShift Automation and Integration preparation labs regularly with the latest professional knowledge. Get 44 practice questions for the EX380 exam at VCEPrep — current in 2026.
| Certification Vendor: | Red Hat |
|---|---|
| Exam Name: | Red Hat Certified Specialist in OpenShift Automation and Integration |
| Exam Number: | EX380 |
| Passing Score: | 210 (on a scale of 100-300) |
| Related Certifications: | Red Hat Certified Engineer (RHCE) Red Hat Certified Architect (RHCA) |
| Exam Price: | $400 USD |
| Exam Format: | Performance-based, Hands-on labs |
| Available Languages: | English, Japanese, Chinese (Simplified) |
| Certificate Validity Period: | 3 years |
| Exam Duration: | 180 minutes |
| Real Exam Qty: | 15 |
| Sample Questions: | ![]() |
| Exam Way: | On-site at Red Hat certified testing centers or online proctored exam |
| Pre Condition: | Red Hat recommends taking the DO180 (Red Hat OpenShift Administration I) course or having equivalent knowledge before attempting this exam. Familiarity with Linux administration is strongly recommended. |
| Official Syllabus URL: | https://www.redhat.com/en/services/training/ex380-red-hat-certified-specialist-openshift-automation-and-integration-exam |
| Section | Weight | Objectives |
|---|---|---|
| Topic 1: Manage storage for applications | 10% | - Manage storage classes - Create and use persistent volume claims - Configure persistent storage |
| Topic 2: Monitor and troubleshoot cluster | 15% | - Analyze logs and events - Troubleshoot common issues - Monitor cluster health and metrics |
| Topic 3: Deploy and manage applications | 20% | - Implement multi-container pods - Use ConfigMaps and Secrets - Create and manage deployments - Configure application scaling and replication |
| Topic 4: Configure authentication and authorization | 15% | - Configure RBAC (Role-Based Access Control) - Manage users and groups - Create and manage service accounts - Integrate with external identity providers |
| Topic 5: Implement CI/CD pipelines | 10% | - Integrate with external CI/CD tools - Configure OpenShift pipelines ( Tekton ) - Automate application deployments |
| Topic 6: Manage OpenShift Container Platform through CLI and Web UI | 15% | - Install and configure OpenShift cluster using CLI tools - Navigate and operate through the web console - Use oc and kubectl commands for cluster management |
| Topic 7: Implement and manage networking | 15% | - Manage network policies - Configure Ingress and Egress policies - Troubleshoot network connectivity issues |
The RedHat Red Hat Certified Specialist in OpenShift Automation and Integration blueprint spans 7 domains — including Implement and manage networking (15%), Deploy and manage applications (20%), Implement CI/CD pipelines (10%). Work the domains in order of weight; the complete outline above lists every subtopic.
Yes — download the free RedHat Red Hat Certified Specialist in OpenShift Automation and Integration demo and experience the brand-new learning format before paying. Purchases include 365 days of free updates by email; renew afterward at 50% off.
180 minutes for 15 questions. The VCEPrep PC dumps' simulated test environment builds the pacing you need — practice without limits on time or place.
The RedHat Red Hat Certified Specialist in OpenShift Automation and Integration is RedHat's certification exam for Red Hat OpenShift, at the Specialist level. It's harder than a driver's license test — but brand-new learning ways make it manageable. Related credentials include Red Hat Certified Engineer (RHCE), Red Hat Certified Architect (RHCA).
Red Hat recommends taking the DO180 (Red Hat OpenShift Administration I) course or having equivalent knowledge before attempting this exam. Familiarity with Linux administration is strongly recommended. Eligibility rules change over time, so verify the current requirements on the official page (official EX380 exam page) before registering.
$400 USD per attempt, 210 (on a scale of 100-300) to pass. Retakes cost the full fee, so prepare thoroughly — the 44 practice questions for the EX380 exam at VCEPrep work as your personal think tank.
Upon successful payment, our system emails the RedHat Red Hat Certified Specialist in OpenShift Automation and Integration material automatically within about a minute — download the PDF at your convenience right away, with 24/7 help if nothing arrives within 2 hours. If you fail the corresponding EX380 exam within 60 days of purchase, we return all money: send a scanned enrollment slip plus the official Score Report PDF within 2 days of the exam, processed within 7 days. Excluded: exams within 3 days of purchase, candidate names that don't match the payer, and free or expired products. Prefer a swap? Exchange for two equal-value dumps free. No hassle money.
Export and import container images (mirror to internal registry)
Task Information : Pull an image from an external registry, push it into the OpenShift internal registry, and update a deployment to use the mirrored image.
Correct Answer:
See the solution below in Explanation:
Explanation:
* Log in to OpenShift internal registry
* oc registry login
* Allows podman to push to the internal registry.
* Pull external image
* podman pull docker.io/library/nginx:1.25
* Gets the image locally.
* Tag for internal registry destination
* podman tag nginx:1.25 image-registry.openshift-image-registry.svc:5000/orders/nginx:1.25
* Uses the cluster service DNS name (works inside cluster network).
* Push to internal registry
* podman push image-registry.openshift-image-registry.svc:5000/orders/nginx:1.25
* Update deployment to use internal image
* oc -n orders set image deploy/web web=image-registry.openshift-image-registry.svc:5000/orders/nginx:
1.25
* Verify rollout
* oc -n orders rollout status deploy/web
* oc -n orders get pods -o wide
Backup and Restore - Restore Application from Existing Backup
Reveal Solution Discussion 0Correct Answer:
See the solution below in Explanation:
Explanation:
Step 1: Make sure Velero is installed and configured in the environment.
The Task SIMULATION assumes an existing backup named backup-app-daily is already present.
Step 2: Run the restore command:
velero restore create --from-backup backup-app-daily
Step 3: Confirm the restore request is submitted.
The lab output shows:
Restore request "backup-app-daily-2024" submitted successfully.
Detailed explanation:
This command instructs Velero to create a restore operation using the existing backup called backup-app- daily. Velero is commonly used to protect Kubernetes and OpenShift resources by backing up object definitions and, when configured, persistent data integrations. The command does not manually recreate resources one by one; instead, it leverages the metadata captured during backup. A successful restore submission means the request has been accepted, not necessarily that every object has already been fully restored. In practical administration, you would often follow this by checking restore status and validating the application namespace, pods, services, routes, and storage bindings. This lab Task SIMULATION focuses specifically on initiating the restore from the named backup source.
Kubeconfig Management - Set Context in Kubeconfig
Reveal Solution Discussion 0Correct Answer:
See the solution below in Explanation:
Explanation:
Step 1: Verify the cluster name, namespace, and user name that should be referenced.
The lab uses cluster api-ocp4-example-com:6443, namespace audit-ns, and user audit-sa.
Step 2: Run the command:
oc config set-context audit --cluster api-ocp4-example-com:6443 --namespace audit-ns --user audit-sa -- kubeconfig audit.config Step 3: Confirm context creation.
The lab output shows:
Context "audit" created.
Detailed explanation:
A kubeconfig context ties together three things: a cluster endpoint, a user identity, and optionally a default namespace. This Task creates a context named audit in the file audit.config. Contexts are useful because they simplify repeated administration by letting the user switch between prepared working environments instead of re-entering cluster and namespace details each time. The namespace portion is especially helpful for project- scoped operations, because commands run under that context default to the chosen namespace. Accuracy matters here: if the user name in the context does not match the credentials entry or the cluster name does not exist in the kubeconfig, the context will not function as intended.
Create a full application backup (resources + PV data)
Task Information : Create a Velero backup of namespace orders including PV snapshots.
Correct Answer:
See the solution below in Explanation:
Explanation:
* Confirm resources and PVCs exist
* oc -n orders get all
* oc -n orders get pvc
* Ensures there is something meaningful to back up.
* Create backup including volume snapshots
* velero backup create orders-full --include-namespaces orders --snapshot-volumes
* Captures Kubernetes objects and requests PV snapshots where supported.
* Check status/details
* velero backup describe orders-full --details
* velero backup logs orders-full
* Review warnings/errors and confirm snapshot actions.
Add a second Identity Provider (HTPasswd) alongside LDAP
Task Information : Configure multiple identity providers by adding an HTPasswd IDP without removing the existing LDAP IDP.
Correct Answer:
See the solution below in Explanation:
Explanation:
* Create a local htpasswd file with a test user
* htpasswd -c -B -b /tmp/htpass.txt testuser RedHat123!
* -c creates a new file (use only once).
* -B uses bcrypt hashing (recommended).
* -b supplies password non-interactively (good for labs).
* Create the HTPasswd secret in openshift-config
* oc -n openshift-config create secret generic htpass-secret --from-file=htpasswd=/tmp/htpass.txt
* OAuth reads the htpasswd key from this secret.
* Edit OAuth and add the HTPasswd provider (keep LDAP intact)
* oc edit oauth cluster
Add another entry under spec.identityProviders:
- name: local-htpasswd
mappingMethod: claim
type: HTPasswd
htpasswd:
fileData:
name: htpass-secret
* This adds a second login option while preserving LDAP.
* Restart OAuth pods
* oc -n openshift-authentication delete pod -l app=oauth-openshift
* Ensures the updated list of identity providers is loaded.
* Verify login works for htpasswd user
* Log in via console using testuser.
* Confirm the user is created:
* oc get user testuser
Over 73778+ Satisfied Customers
Passed EX380 exam questions which are valid in today. Very helpful.
I also want to suggest all to use these products and see their dream come true.
I wanted not only RedHat EX380 certification but also an outstanding percentage for grabbing a position in my office! Today I am successful in both of dumphas really impressed me!
Miracles sometimes occur, but one has to choose rightly. Thanks VCEPrep for marking things so pleasant.
I just pass EX380 exam. I'm busy with my work, but VCEPrep really helped me save much time. Greatful!
I passed! Unfortunately, I didn't see all questions from the EX380 dumps in my exam, but despite this fact I showed an impressive passing score. I advise you gays to reinforce knowledge with EX380 pdf for better result.
If it isn't the EX380 practice file to help me pass the exam, i would always be in a panic and lost it for sure. Thanks so much!
I passed it with a very high score.
If I do so, I also have passed this EX380 exam in first attempt like my other colleagues.
VCEPrep Practice Exams are written to the highest standards of technical accuracy, using only certified subject matter experts and published authors for development - no all study materials.
We are committed to the process of vendor and third party approvals. We believe professionals and executives alike deserve the confidence of quality coverage these authorizations provide.
If you prepare for the exams using our VCEPrep testing engine, It is easy to succeed for all certifications in the first attempt. You don't have to deal with all dumps or any free torrent / rapidshare all stuff.
VCEPrep offers free demo of each product. You can check out the interface, question quality and usability of our practice exams before you decide to buy.