As a major RedHat exam recognized by most companies, the RedHat Red Hat Certified Specialist in OpenShift Automation and Integration deserves real preparation. VCE4Dumps delivers 44 practice questions for the EX380 exam in 2026.
RedHat EX380 Exam Overview:
| Certification Vendor: | Red Hat |
|---|---|
| Exam Name: | Red Hat Certified Specialist in OpenShift Automation and Integration |
| Exam Number: | EX380 |
| Certificate Validity Period: | 3 years |
| Real Exam Qty: | 15 |
| Passing Score: | 210 (on a scale of 100-300) |
| Exam Duration: | 180 minutes |
| Related Certifications: | Red Hat Certified Architect (RHCA) Red Hat Certified Engineer (RHCE) |
| Exam Price: | $400 USD |
| Exam Format: | Performance-based, Hands-on labs |
| Available Languages: | Japanese, Chinese (Simplified), English |
| 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 |
|---|---|---|
| Implement CI/CD pipelines | 10% | - Integrate with external CI/CD tools - Configure OpenShift pipelines ( Tekton ) - Automate application deployments |
| Implement and manage networking | 15% | - Manage network policies - Configure Ingress and Egress policies - Troubleshoot network connectivity issues |
| 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 |
| Configure authentication and authorization | 15% | - Integrate with external identity providers - Create and manage service accounts - Manage users and groups - Configure RBAC (Role-Based Access Control) |
| Manage storage for applications | 10% | - Manage storage classes - Create and use persistent volume claims - Configure persistent storage |
| Deploy and manage applications | 20% | - Create and manage deployments - Configure application scaling and replication - Use ConfigMaps and Secrets - Implement multi-container pods |
| Monitor and troubleshoot cluster | 15% | - Analyze logs and events - Troubleshoot common issues - Monitor cluster health and metrics |
EX380 Exam FAQ — Professional Answers
Yes — download the free trial of the RedHat Red Hat Certified Specialist in OpenShift Automation and Integration material before you buy. Members then enjoy free updating for 365 days, with new versions emailed promptly; renew afterward at 50% off.
The RedHat Red Hat Certified Specialist in OpenShift Automation and Integration is RedHat's certification exam for Red Hat OpenShift, at the Specialist level. As a major exam recognized by most companies, it proves your IT ability to employers — including the big international ones. Related credentials include Red Hat Certified Engineer (RHCE), Red Hat Certified Architect (RHCA).
The RedHat Red Hat Certified Specialist in OpenShift Automation and Integration blueprint covers 7 domains — including Manage OpenShift Container Platform through CLI and Web UI (15%), Monitor and troubleshoot cluster (15%), Implement CI/CD pipelines (10%). Pay attention to the key points where weightings concentrate; the full outline above lists every subtopic.
$400 USD per attempt, 210 (on a scale of 100-300) to pass. Half the effort works only with the right focus — rehearse with the 44 practice questions for the EX380 exam at VCE4Dumps before booking.
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 are updated periodically, so verify the current requirements on the official page (official EX380 exam page) before registering.
Files arrive by automatic email within a minute of payment — unlimited devices, and 24/7 customer assisting for any downloading or purchasing problem if nothing shows up within 2 hours. If you get a bad result on the corresponding EX380 exam within 60 days of purchase, the money is fully refunded: 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. You may instead exchange for two equal-value products free.
180 minutes for 15 questions. The online engine simulates the formal test atmosphere — practice anywhere, so the clock feels familiar on the day.
RedHat Red Hat Certified Specialist in OpenShift Automation and Integration Sample Questions:
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.
==========
Schedule a recurring backup
Task Information : Create a daily backup schedule for namespace orders at 01:00.
Correct Answer:
See the solution below in Explanation:
Explanation:
* Create the schedule
* velero schedule create orders-daily \
* --schedule "0 1 * * *" \
* --include-namespaces orders \
* --snapshot-volumes
* Cron format: minute hour day month weekday.
* Verify schedule exists
* velero schedule get
* Confirm backups are created by the schedule
* velero backup get | grep orders-daily
* Scheduled backups usually have names derived from the schedule.
Export and import a Kubernetes application (YAML export)
Task Information : Export typical app objects from orders and apply them into a new namespace orders- copy.
Correct Answer:
See the solution below in Explanation:
Explanation:
* Export objects to YAML
* oc -n orders get deploy,svc,route,cm,secret -o yaml > orders-app.yaml
* Exports key application resources.
* Create target namespace
* oc new-project orders-copy
* Apply exported YAML
* oc -n orders-copy apply -f orders-app.yaml
* Recreates resources (some fields may need adjustment, like namespaces or immutable fields).
* Validate
* oc -n orders-copy get all
Configure RBAC roles with users and groups
Task Information : Grant edit to group dev-team in namespace payments, and grant view to user auditor1.
Correct Answer:
See the solution below in Explanation:
Explanation:
* Create (or switch to) the project
* oc new-project payments
* Namespace must exist before applying rolebindings.
* Grant edit to the group
* oc -n payments policy add-role-to-group edit dev-team
* Members of dev-team can modify most resources in payments.
* Grant view to a user
* oc -n payments policy add-role-to-user view auditor1
* auditor1 can read resources but not change them.
* Verify rolebindings
* oc -n payments get rolebinding
Create and use client certificates with kubeconfig (CSR flow)
Task Information : Generate a client key/CSR for audit2, approve it, extract the signed cert, and build a kubeconfig using that cert.
Correct Answer:
See the solution below in Explanation:
Explanation:
* Generate private key and CSR
* openssl genrsa -out audit2.key 2048
* openssl req -new -key audit2.key -out audit2.csr -subj "/CN=audit2/O=auditors"
* CN becomes username; O can map to groups in some setups.
* Base64 encode CSR for the API object
* CSR=$(base64 -w0 audit2.csr)
* Kubernetes CSR object expects base64-encoded request data.
* Create the CSR object
* cat < < EOF | oc apply -f -
* apiVersion: certificates.k8s.io/v1
* kind: CertificateSigningRequest
* metadata:
* name: audit2-csr
* spec:
* request: ${CSR}
* signerName: kubernetes.io/kube-apiserver-client
* usages:
* - client auth
* EOF
* Approve the CSR
* oc adm certificate approve audit2-csr
* Approval triggers certificate issuance.
* Extract the signed certificate
* oc get csr audit2-csr -o jsonpath='{.status.certificate}' | base64 -d > audit2.crt
* Produces the client certificate file.
* Build kubeconfig using cert/key
* oc config set-credentials audit2 \
* --client-certificate=audit2.crt --client-key=audit2.key \
* --embed-certs=true --kubeconfig=audit2.kubeconfig
* oc config set-cluster lab \
* --server="$(oc whoami --show-server)" \
* --insecure-skip-tls-verify=true \
* --kubeconfig=audit2.kubeconfig
* oc config set-context audit2 \
* --cluster=lab --user=audit2 --namespace=default \
* --kubeconfig=audit2.kubeconfig
* Creates a kubeconfig that authenticates using client certificates.
* Test
* oc --kubeconfig=audit2.kubeconfig get ns
Free Demo






