BTW, DOWNLOAD part of ExamsLabs EX380 dumps from Cloud Storage: https://drive.google.com/open?id=1vfTX2_Su_c2Fwd4fb13qmQV0bWCieL2c
Choose ExamsLabs EX380 new dumps questions, you will never regret for your decision. Our high-quality EX380 exam cram can ensure you 100% pass. You see, we have quality control system, each questions of EX380 exam dumps are checked and confirmed strictly according to the quality control system. Besides, the updated frequency for EX380 Exam Questions is so regular and in accordance with the real exam changes. You can enjoy one year free update after purchase.
| Certification Vendor: | Red Hat |
|---|---|
| Exam Name: | Red Hat Certified Specialist in OpenShift Automation and Integration (EX380) |
| Exam Number: | EX380 |
| Available Languages: | English |
| Exam Duration: | 240 minutes |
| Passing Score: | Pass/Fail (performance-based scoring by Red Hat; exact numeric score not publicly disclosed) |
| Exam Price: | USD 400 (varies by region) |
| Real Exam Qty: | Performance-based exam (typically 1โ3 hands-on tasks) |
| Certificate Validity Period: | 3 years |
| Exam Format: | Performance-based lab exam, Hands-on practical tasks in OpenShift and automation environments |
| Related Certifications: | Red Hat Certified System Administrator (RHCSA) Red Hat Certified Specialist in OpenShift Administration Red Hat Certified Engineer (RHCE) |
| Recommended Training: | Red Hat OpenShift Administration courses Red Hat Ansible Automation Platform training |
| Exam Registration: | Red Hat Certification Catalog Red Hat Training and Exams |
| Sample Questions: | RedHat EX380 Sample Questions |
| Exam Way: | Online remote exam or onsite testing center (performance-based lab environment) |
| Pre Condition: | No strict prerequisites; RHCSA or equivalent experience with Linux, containers, OpenShift, and Ansible strongly recommended. |
| Official Syllabus URL: | https://www.redhat.com/en/services/certification |
>> Reliable EX380 Braindumps Ebook <<
We provide 24-hours online customer service which replies the clientโs questions and doubts about our EX380 training quiz and solve their problems. Our professional personnel provide long-distance assistance online. Our expert team will check the update EX380 learning prep and will send the update version automatically to the clients. So the clients can enjoy the convenience of our wonderful service and the benefits brought by our superior EX380 guide materials.
| Topic | Details |
|---|---|
| Topic 1 |
|
| Topic 2 |
|
| Topic 3 |
|
| Topic 4 |
|
| Topic 5 |
|
NEW QUESTION # 21
Kubeconfig Management - Approve CSR
Answer:
Explanation:
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.
NEW QUESTION # 22
Node Management - Remove Taint on Worker Node
Answer:
Explanation:
See the solution below in Explanation:
Explanation:
Step 1: Log in to the OpenShift web console with an account that has sufficient cluster administrative privileges.
This Task is performed from the GUI, not the CLI. The lab hint explicitly places this under the worker node details page in the console.
Step 2: Navigate to Compute .
This area contains node-level resources, including control plane and worker nodes.
Step 3: Open Nodes .
Here you can view all nodes currently registered in the cluster.
Step 4: Select the required worker node .
Choose the exact worker node referenced by the lab Task SIMULATION .
Step 5: Open the Details tab.
The taint configuration is managed from the selected node's details view.
Step 6: Locate the Taints section and click Edit .
A taint is used to control pod scheduling. If a worker has a taint, pods without matching tolerations may not schedule there.
Step 7: Remove the unwanted taint entry.
Removing the taint makes the worker eligible again for normal scheduling behavior, depending on the rest of the cluster policy.
Step 8: Click Save .
This commits the change so the node is updated and the scheduler can evaluate it without that taint.
NEW QUESTION # 23
Kubeconfig Management - Set Credentials in Kubeconfig
Answer:
Explanation:
See the solution below in Explanation:
Explanation:
Step 1: Ensure the client certificate and private key files are available.
The lab uses audit.crt and tls.key.
Step 2: Run the command:
oc config set-credentials audit --client-certificate audit.crt --client-key tls.key --embed-certs --kubeconfig audit.config Step 3: Confirm the user entry is written.
The lab output shows:
User "audit" set.
Detailed explanation:
This command creates or updates the audit user entry inside the kubeconfig file audit.config. It points the user to a client certificate and private key, and the --embed-certs option stores certificate material directly inside the kubeconfig rather than only referencing external files. That makes the kubeconfig more portable because it can be moved and used without separately copying the certificate files, provided the embedded content is valid. In certificate-based authentication, the private key proves client possession while the certificate presents the approved identity. If the certificate and key do not match, authentication will fail. This step does not yet define what cluster or namespace the user works against; it only defines the credential identity.
NEW QUESTION # 24
Backup and Restore - Fix SCC for Restored Application
Answer:
Explanation:
See the solution below in Explanation:
Explanation:
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.
NEW QUESTION # 25
Spread replicas using podAntiAffinity
Task Information : Configure payments/api to prefer scheduling pods on different nodes.
Answer:
Explanation:
See the solution below in Explanation:
Explanation:
* Patch deployment with preferred podAntiAffinity
* oc -n payments patch deploy api --type=merge -p '{
* "spec":{"template":{"spec":{"affinity":{
* "podAntiAffinity":{
* "preferredDuringSchedulingIgnoredDuringExecution":[{
* "weight":100,
* "podAffinityTerm":{
* "labelSelector":{"matchLabels":{"app":"api"}},
* "topologyKey":"kubernetes.io/hostname"
* }
* }]
* }
* }}}}
* }'
* Encourages spread across nodes to reduce single-node impact.
* Verify spread
* oc -n payments get pods -o wide
NEW QUESTION # 26
......
EX380 Updated Demo: https://www.examslabs.com/RedHat/Red-Hat-OpenShift/best-EX380-exam-dumps.html
P.S. Free 2026 RedHat EX380 dumps are available on Google Drive shared by ExamsLabs: https://drive.google.com/open?id=1vfTX2_Su_c2Fwd4fb13qmQV0bWCieL2c