Limited-Time Offer: Enjoy 50% Savings! - Ends In 0d 00h 00m 00s Coupon code: 50OFF
Welcome to QA4Exam
Logo

- Trusted Worldwide Questions & Answers

RedHat EX380 Dumps - Pass Red Hat Certified Specialist in OpenShift Automation and Integration Exam in 2026

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.

How QA4Exam.com Helps You Pass

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.

Frequently Asked Questions

1. Who should take the RedHat EX380 exam?

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.

2. Is the EX380 exam difficult?

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.

3. Can I pass EX380 with only braindumps?

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.

4. Do I need hands-on experience for this 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.

5. Are QA4Exam.com dumps enough to pass on the first attempt?

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.

6. What is included in the QA4Exam.com EX380 practice test format?

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.

7. Can I retake the EX380 exam if I do not pass?

Retake policy details are set by the exam provider, so you should review the current Red Hat exam policies before scheduling another attempt.

The questions for EX380 were last updated on Jun 3, 2026.
  • Viewing page 1 out of 8 pages.
  • Viewing questions 1-5 out of 42 questions
Get All 42 Questions & Answers
Question No. 1

SIMULATION

Task SIMULATION 12

Logging Configuration -- Configure ClusterLogging in Web Console

Show Answer Hide Answer
Correct Answer: A

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.

============


Question No. 2

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.

Show Answer Hide Answer
Correct Answer: A

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

==========


Question No. 3

SIMULATION

Task SIMULATION 5

Backup and Restore -- Fix SCC for Restored Application

Show Answer Hide Answer
Correct Answer: A

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.

============


Question No. 4

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.

Show Answer Hide Answer
Correct Answer: A

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

==========


Question No. 5

SIMULATION

Task SIMULATION 12

Create a full application backup (resources + PV data)

Task Information: Create a Velero backup of namespace orders including PV snapshots.

Show Answer Hide Answer
Correct Answer: A

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.

==========


Unlock All Questions for RedHat EX380 Exam

Full Exam Access, Actual Exam Questions, Validated Answers, Anytime Anywhere, No Download Limits, No Practice Limits

Get All 42 Questions & Answers