Free demo, three versions, credit card payment protected, delivery in minutes, replies within two hours, and a written refund policy: TestPassed makes RedHat Red Hat Certified Specialist in OpenShift Automation and Integration preparation a worry-free purchase for 2026 EX380 candidates.
RedHat EX380 Exam Overview:
| 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) |
| Exam Format: | Hands-on labs, Performance-based |
| Exam Duration: | 180 minutes |
| Related Certifications: | Red Hat Certified Engineer (RHCE) Red Hat Certified Architect (RHCA) |
| Real Exam Qty: | 15 |
| Available Languages: | English, Chinese (Simplified), Japanese |
| Exam Price: | $400 USD |
| Certificate Validity Period: | 3 years |
| 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 |
RedHat EX380 Exam Syllabus Topics:
| Section | Weight | Objectives |
|---|---|---|
| Topic 1: Configure authentication and authorization | 15% | - Create and manage service accounts - Manage users and groups - Integrate with external identity providers - Configure RBAC (Role-Based Access Control) |
| Topic 2: Monitor and troubleshoot cluster | 15% | - Troubleshoot common issues - Analyze logs and events - Monitor cluster health and metrics |
| Topic 3: Manage OpenShift Container Platform through CLI and Web UI | 15% | - Use oc and kubectl commands for cluster management - Navigate and operate through the web console - Install and configure OpenShift cluster using CLI tools |
| Topic 4: Implement and manage networking | 15% | - Troubleshoot network connectivity issues - Configure Ingress and Egress policies - Manage network policies |
| Topic 5: Implement CI/CD pipelines | 10% | - Automate application deployments - Integrate with external CI/CD tools - Configure OpenShift pipelines ( Tekton ) |
| Topic 6: Manage storage for applications | 10% | - Manage storage classes - Create and use persistent volume claims - Configure persistent storage |
| Topic 7: Deploy and manage applications | 20% | - Create and manage deployments - Implement multi-container pods - Use ConfigMaps and Secrets - Configure application scaling and replication |
EX380 Exam: The FAQ Candidates Actually Need
RedHat Red Hat Certified Specialist in OpenShift Automation and Integration is an official Red Hat certification exam, listed under the code EX380. Passing it earns you the Red Hat OpenShift certification, positioned at the Specialist level. It also connects to Red Hat Certified Engineer (RHCE), Red Hat Certified Architect (RHCA). For anyone aiming at a leadership track in IT, this credential is one of the clearest markers of verified skill.
Passing RedHat Red Hat Certified Specialist in OpenShift Automation and Integration takes 210 (on a scale of 100-300), and the official registration fee is $400 USD. Retakes charge the full $400 USD again, which is why accuracy in preparation matters more than volume. Validate your readiness with repeated TestPassed practice scores above the requirement before committing to a date.
The RedHat Red Hat Certified Specialist in OpenShift Automation and Integration exam contains 15 questions to answer within 180 minutes. The SOFT engine from TestPassed imitates the real test scene on your computer and uses special methods to help you master questions and answers, so the official time limit becomes a practiced routine rather than a surprise.
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.
Vendor requirements are revised periodically, so confirm the current conditions before registering via the official exam page.
Three versions share the same verified content: the PDF prints unlimited copies for paper study, the SOFT engine imitates the real test scene on Windows PCs, and the APP version runs on all electronic products, which is why the majority of examinees choose it. A free demo lets you try before deciding, and after purchase updates are free for 365 days, extendable afterward at a 50% discount.
Worry-free shopping means a 100% money-back guarantee with stated conditions. Take the RedHat Red Hat Certified Specialist in OpenShift Automation and Integration exam within 60 days of purchase; if you fail, you may claim a full refund, provided the exam matches your product. Attempts within 3 days of purchase are ineligible, as are downloaded-but-unused products, free materials, and expired orders; the candidate name must match the payer name. Submit a scanned enrollment slip and the official Score Report PDF within 2 days of the exam, and claims are processed within 7 days. Alternatively, exchange for two other exam products of equal value, free, keeping the update service on your original purchase.
Delivery is immediate: files unlock for download at payment and are emailed to you within one minute. If nothing arrives within 2 hours, check spam and contact our 7/24 customer attendants, who reply within two hours. Installation is unlimited, and credit card payment keeps your money safe.
RedHat Red Hat Certified Specialist in OpenShift Automation and Integration is structured into 7 official domains. The leading ones are Configure authentication and authorization (15%), Implement CI/CD pipelines (10%), and Monitor and troubleshoot cluster (15%). The full topic breakdown appears above; accurate preparation starts with an accurate map.
RedHat Red Hat Certified Specialist in OpenShift Automation and Integration Sample Questions:
Maintain group synchronization on a schedule (CronJob)
Task Information : Create a CronJob that runs LDAP group sync on a schedule using a service account that has the required permissions.
Correct Answer:
See the solution below in Explanation:
Explanation:
* Create a namespace for the sync job
* oc new-project id-sync
* Keeps the automation components organized.
* Create a service account for the sync job
* oc -n id-sync create sa group-sync
* CronJob runs under this SA identity.
* Grant cluster permissions to manage groups
* oc adm policy add-cluster-role-to-user cluster-admin system:serviceaccount:id-sync:group-sync
* In real environments you should scope down, but lab Task SIMULATIONs often accept cluster- admin for speed.
* Create a ConfigMap for groupsync.yaml and Secret(s) for bind password/CA
* Mount them into the job container.
* Create CronJob to run group sync
* Command inside job:
* oc adm groups sync --sync-config=/config/groupsync.yaml --confirm
* The CronJob ensures periodic reconciliation with LDAP.
* Verify job runs
* oc -n id-sync get cronjob
* oc -n id-sync get jobs
* oc -n id-sync logs job/ < job-name >
Configure resiliency using a PodDisruptionBudget
Task Information : Ensure at least 2 replicas of payments/api remain available during voluntary disruptions.
Correct Answer:
See the solution below in Explanation:
Explanation:
* Create PDB
* cat < < EOF | oc -n payments apply -f -
* apiVersion: policy/v1
* kind: PodDisruptionBudget
* metadata:
* name: api-pdb
* spec:
* minAvailable: 2
* selector:
* matchLabels:
* app: api
* EOF
* minAvailable: 2 blocks evictions that would reduce availability below 2.
* Verify PDB
* oc -n payments get pdb
* oc -n payments describe pdb api-pdb
Kubeconfig Management - Approve CSR
Reveal Solution Discussion 0Correct Answer:
See the solution below in Explanation:
Explanation:
Step 1: Identify the pending certificate signing request.
The lab names it audit-csr.
Step 2: Run the approval command:
oc adm certificate approve audit-csr
Step 3: Confirm approval.
The lab output shows:
certificatesigningrequest.certificates.k8s.io/audit-csr approved
Detailed explanation:
In Kubernetes and OpenShift, a CSR must be approved before the requester can use the signed certificate for authentication. This Task approves the CSR named audit-csr, which is likely associated with the audit user or service account access flow in the lab. Certificate-based authentication is commonly used for kubeconfig access because it enables secure client identity without relying solely on tokens. Until the CSR is approved, the certificate cannot be trusted by the cluster API for authenticated operations. Administrative approval is therefore a gatekeeping step that ensures only intended certificate requests become valid credentials. This Task is part of a broader kubeconfig workflow that continues with setting credentials and defining context.
Configure BackupStorageLocation and VolumeSnapshotLocation
Task Information : Configure OADP/Velero storage locations and confirm they show as Available.
Correct Answer:
See the solution below in Explanation:
Explanation:
* Create a secret for cloud credentials (S3-compatible example)
* oc -n openshift-adp create secret generic cloud-credentials \
* --from-file=cloud=/path/to/credentials
* Velero uses this secret to authenticate to object storage.
* Create/Update the DataProtectionApplication (DPA)
* Apply a DPA CR that defines:
* backupLocations (bucket, endpoint URL, region, etc.)
* snapshotLocations (if using snapshots)
* Verify BackupStorageLocation and SnapshotLocation
* velero backup-location get
* velero snapshot-location get
* Status should be Available, meaning storage config is valid.
==========
Silence an alert in Alertmanager
Task Information : Create an Alertmanager silence for a noisy alert for 2 hours, then confirm it's silenced.
Correct Answer:
See the solution below in Explanation:
Explanation:
* Find the alert name and labels
* Web console: Observe # Alerts # click the alert to view label set.
* Open Alertmanager silences
* Observe # Alerting # Alertmanager # Silences # Create silence
* Explanation: Silences mute alerts matching label filters.
* Create the silence
* Add matcher: alertname = < ALERT_NAME >
* Duration: 2 hours
* Save.
* Verify the alert shows as silenced
* The alert should indicate it is silenced in the UI.



