The RedHat EX380 exam belongs to the Red Hat Openshift Certifications track and validates your ability to automate and integrate key OpenShift platform tasks. It is designed for administrators and platform engineers who work with authentication, GitOps, logging, monitoring, scheduling, and application protection in OpenShift environments. Earning the Red Hat Certified Specialist in OpenShift Automation and Integration credential shows that you can manage real-world cluster operations with confidence. This certification matters for professionals who want to prove practical skills in modern container platform automation.
| # | Exam Topics | Sub-Topics | Approximate Weightage (%) |
|---|---|---|---|
| 1 | Configure and manage OpenShift Authentication and Identities | Identity providers, user and group mapping, role-based access, authentication troubleshooting | 16% |
| 2 | Back up and restore applications with OpenShift API for Data Protection (OADP) | Backup planning, restore operations, application data protection, recovery validation | 15% |
| 3 | Manage workloads with cluster partitioning | Node placement, workload isolation, partitioning policies, resource targeting | 13% |
| 4 | Manage workloads with pod scheduling | Labels and selectors, taints and tolerations, affinity rules, scheduling control | 15% |
| 5 | Implement OpenShift GitOps | Argo CD setup, application synchronization, repository management, deployment automation | 14% |
| 6 | Manage cluster monitoring and metrics | Metrics review, alerting concepts, monitoring components, performance observation | 14% |
| 7 | Provision and inspect cluster logging | Logging setup, log collection, log inspection, troubleshooting cluster events | 13% |
This exam tests more than memorization. Candidates must understand how to apply OpenShift features in practical scenarios, configure platform services correctly, and troubleshoot common operational issues. Strong hands-on knowledge is important because the exam focuses on real administrative tasks across automation, integration, protection, observability, and workload management.
QA4Exam.com provides Exam PDF material with actual questions and answers plus an Online Practice Test for the RedHat EX380 exam. These resources help you study with real exam simulation, so you can understand the question style and build confidence before test day. The practice test supports time management practice, while the updated questions and verified answers help you focus on the most relevant exam areas. Using both formats together can improve readiness and make it easier to pass the EX380 exam on your first attempt.
The exam is intended for professionals working with OpenShift administration, automation, and integration tasks, especially those pursuing the Red Hat Certified Specialist in OpenShift Automation and Integration credential.
It can be challenging because it tests practical OpenShift skills across several operational areas. Candidates who have hands-on experience usually find it easier to handle the scenario-based tasks.
Using only braindumps is not a safe strategy. You should combine practice questions with real hands-on study so you understand the concepts and can apply them correctly in the exam.
Yes, hands-on experience is strongly recommended because the exam covers real OpenShift administration tasks such as authentication, GitOps, monitoring, logging, and workload management.
QA4Exam.com dumps and the Online Practice Test are designed to improve your chances by giving you up-to-date questions, verified answers, and exam-style practice. For the best result, use them with your own study and lab practice.
The practice test is built to simulate the exam experience and help you practice question flow and timing. It is useful for checking your readiness and identifying weak areas before the real exam.
Retake policy details are set by the exam provider, so you should review the current Red Hat exam policies before scheduling another attempt.
SIMULATION
Task SIMULATION 12
Logging Configuration -- Configure ClusterLogging in Web Console
Step 1: Log in to the OpenShift web console.
This Task is explicitly defined as a GUI workflow.
Step 2: Navigate to Operators.
Installed logging components are managed through the operator framework.
Step 3: Open Installed Operators.
This lists operators already deployed in the cluster.
Step 4: Select Red Hat OpenShift Logging.
This operator manages the cluster logging stack and its custom resources.
Step 5: Open the ClusterLogging instance.
The Task SIMULATION refers to editing the existing ClusterLogging custom resource.
Step 6: Switch to YAML View.
This allows direct editing of the logging custom resource specification.
Step 7: Edit the collection type and set it to vector.
This changes the log collector implementation.
Step 8: Click Save.
The operator will reconcile the resource and apply the updated collector configuration.
Detailed explanation:
The ClusterLogging custom resource controls the logging stack behavior in OpenShift. Changing the collection type to vector updates which collector technology is used for gathering node and container logs. In operator-managed platforms, direct YAML edits to the custom resource are the preferred method for changing managed behavior because the operator then applies and maintains the desired state. This Task tests both navigation skills in the web console and knowledge of where logging behavior is configured. Saving the resource triggers reconciliation, which is a core OpenShift operator pattern: the declared configuration is read and enforced by the operator rather than by manual per-pod changes.
============
SIMULATION
Task SIMULATION 9
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.
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
==========
SIMULATION
Task SIMULATION 5
Backup and Restore -- Fix SCC for Restored Application
Step 1: Identify the application namespace after restore.
The lab shows the namespace as my-app-namespace.
Step 2: Run the SCC assignment command:
oc adm policy add-scc-to-user anyuid -z default -n my-app-namespace
Step 3: Confirm the role binding is applied.
The lab output shows:
clusterrole.rbac.authorization.k8s.io/system:openshift:scc:anyuid added: 'default'
Detailed explanation:
After a restore, the application may fail if its pods require a security context not permitted by the default SCC allocation. This command grants the anyuid SCC to the default service account in the my-app-namespace project. The -z default syntax targets the default service account, which many restored workloads use if no custom service account is defined. The anyuid SCC allows containers to run with arbitrary user IDs, which some legacy or prebuilt images require. In OpenShift, SCC mismatches commonly cause pods to remain in pending or crash-related states. Assigning the proper SCC resolves those admission issues so workloads can start successfully. This step is therefore a post-restore operational fix to align security policy with application requirements.
============
SIMULATION
Task SIMULATION 2
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.
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
==========
SIMULATION
Task SIMULATION 12
Create a full application backup (resources + PV data)
Task Information: Create a Velero backup of namespace orders including PV snapshots.
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.
==========
Full Exam Access, Actual Exam Questions, Validated Answers, Anytime Anywhere, No Download Limits, No Practice Limits
Get All 42 Questions & Answers