EX380 Practice Exam | Dumps EX380 PDF

BONUS!!! Download part of DumpsReview EX380 dumps for free: https://drive.google.com/open?id=1AqWnSxgw9BxjJbqeok085963YWJDIXjs

We provide first-rate service on the EX380 learning prep to the clients and they include the service before and after the sale, 24-hours online customer service and long-distance assistance, the refund service and the update service. The client can try out our and download EX380 Guide materials freely before the sale and if the client have problems about our EX380 study materials after the sale they can contact our customer service at any time.

RedHat EX380 Exam Overview:

Certification Vendor:Red Hat
Exam Name:Red Hat Certified Specialist in OpenShift Automation and Integration exam
Exam Number:EX380
Exam Duration:240 minutes
Passing Score:Not disclosed
Certificate Validity Period:3 years
Exam Format:Hands-on lab, Performance-based, Practical tasks
Available Languages:English
Related Certifications:Red Hat Certified Architect (RHCA)
Exam Price:$450 USD / €450 EUR
Real Exam Qty:Performance-based tasks, no fixed number
Recommended Training:DO380 - Red Hat OpenShift Automation and Integration
Exam Registration:Red Hat Certification Portal
Sample Questions:RedHat EX380 Sample Questions
Exam Way:Online proctored or onsite at authorized test centers
Pre Condition:Current Red Hat Certified Specialist in OpenShift Administration certification, or equivalent experience matching DO180 and DO280 course topics
Official Syllabus URL:https://www.redhat.com/en/services/training/ex380-certified-specialist-openshift-automation-exam

>> EX380 Practice Exam <<

Use Real EX380 Dumps [2026] Guaranteed Success

We have handled professional EX380 practice materials for over ten years. Our experts have many years’ experience in this particular line of business, together with meticulous and professional attitude towards jobs. Their abilities are unquestionable, besides, EX380 Exam Questions are priced reasonably with three kinds: the PDF, Software and APP online. Though the content is the same, but their displays are totally different and functionable.

RedHat EX380 Exam Syllabus Topics:

TopicDetails
Topic 1
  • Manage workloads with cluster partitioning: Covers dedicating cluster nodes to specific workloads by configuring node pools, machine configurations, and special-purpose operators.
Topic 2
  • Provision and inspect cluster logging: Covers deploying and configuring OpenShift logging with Vector and Loki, forwarding logs externally, querying logs, and diagnosing logging issues.
Topic 3
  • Manage cluster monitoring and metrics: Covers troubleshooting application and cluster performance issues and managing alerts and notifications.
Topic 4
  • Back up and restore applications with OpenShift API for Data Protection (OADP): Covers deploying OADP, performing full application backups including data and resources, using volume snapshots, and scheduling and restoring backups.
Topic 5
  • Implement OpenShift GitOps: Covers deploying and configuring Argo CD with the GitOps operator to manage both cluster administration and application delivery through Git-based pipelines and integrations.

RedHat Red Hat Certified Specialist in OpenShift Automation and Integration Sample Questions (Q13-Q18):

NEW QUESTION # 13
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.

Answer:

Explanation:
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 >


NEW QUESTION # 14
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.

Answer:

Explanation:
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


NEW QUESTION # 15
Kubeconfig Management - Use Context

Answer:

Explanation:
See the solution below in Explanation:
Explanation:
Step 1: Make sure the context already exists in the kubeconfig file.
This follows the context creation Task SIMULATION .
Step 2: Run the command:
oc config use-context audit --kubeconfig audit.config
Step 3: Confirm the active context switches successfully.
The lab output shows:
Switched to context "audit".
Detailed explanation:
This command activates the audit context inside the specified kubeconfig file. Once selected, subsequent oc commands using that kubeconfig will default to the cluster, user, and namespace associated with that context.
This is operationally important because many administration mistakes come from running commands against the wrong cluster or project. Using explicit context switching reduces that risk and makes the kubeconfig usable for the intended audit workflow. In exams and real environments alike, the context is what turns separate kubeconfig elements into a working session configuration. Without switching to the correct context, even a well-formed kubeconfig may not be used as expected.


NEW QUESTION # 16
Identity Management - Create HTPasswd Secret

Answer:

Explanation:
See the solution below in Explanation:
Explanation:
Step 1: Open a terminal with oc access to the cluster.
This Task is CLI-driven and targets the openshift-config namespace.
Step 2: Run the command:
oc create secret generic rhds-ldap-secret --from-literal bindPassword=redhatocp -n openshift-config Step 3: Verify that the secret is created successfully.
The lab output shows:
secret/rhds-ldap-secret created
Detailed explanation:
This step creates a generic secret named rhds-ldap-secret in the openshift-config namespace. The secret stores a key called bindPassword with the value redhatocp. In an identity-provider or LDAP integration workflow, the bind password is used by OpenShift when connecting to the external directory service. Storing this value in a secret is the correct operational pattern because authentication material should not be embedded directly into configuration objects. The openshift-config namespace is specifically important because cluster authentication configuration commonly references secrets and configmaps from that namespace. If the secret name or key is wrong, the authentication configuration that depends on it may fail to validate or connect properly.


NEW QUESTION # 17
Kubeconfig Management - Set Context in Kubeconfig

Answer:

Explanation:
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.


NEW QUESTION # 18
......

Dumps EX380 PDF: https://www.dumpsreview.com/EX380-exam-dumps-review.html

P.S. Free & New EX380 dumps are available on Google Drive shared by DumpsReview: https://drive.google.com/open?id=1AqWnSxgw9BxjJbqeok085963YWJDIXjs