Yeah, I'd pick A too. Using a regular group for the deployment pipeline lines up with OCI docs for managing devops-family resources. Dynamic groups are more for automation with compute or functions, not admins. Open to counterpoints if I missed some recent change.
Q: 1
You are a DevOps project administrator. You are creating Oracle Cloud Infrastructure (OCI) Identity
and Access Management (IAM) policies that will be used in a DevOps CI/CD pipeline for deployment
to an Oracle Container Engine for Kubernetes (OKE) environment.
Which OCI IAM policy can be used?
Options
Discussion
Option A fits with what the official docs recommend for DevOps CI/CD setups on OCI. Regular groups are preferred for project admin roles managing devops-family resources, not dynamic groups. Saw similar structure on recent Oracle practice tests. Pretty sure it's A, but open if anyone's seen newer guidance.
A tbh
A not B. Dynamic groups are mainly for resources like functions or compute, but the question says project admin and group. nitpicky but wording matters in OCI IAM.
Had something like this in a mock, it's A.
Be respectful. No spam.
Q: 2
Which of the following statement is INCORRECT with respect to a Dockerfile?
Options
Discussion
Option A
A , because WORKDIR also affects COPY and ADD as per Docker docs, so it's the incorrect statement here. Quick check in practice matches this too. Unless I'm missing some build context detail?
D , since the trap is about specifying CMD and ENTRYPOINT in JSON, which isn't strictly required for both together.
C/D? Not quite sure which one is more wrong here tbh.
Its A, seen similar in exam reports. WORKDIR does affect COPY and ADD too.
Be respectful. No spam.
Q: 3
You are a DevOps engineer working on a project that requires you to push and pull Docker images to
and from Oracle Cloud Infrastructure Registry (Container Registry) using Docker CLI. You have been
given access to Container Registry and have installed Docker CLI on your local machine.
Which should you create and use to securely authenticate and store your Docker image in a private
Docker registry in OCI?
Options
Discussion
Option A is right, you need an Auth Token when logging into OCI's Container Registry with Docker CLI. The token works like a password for registry access, not your regular OCI password. I've seen similar questions on other Oracle exams too.
Its A for sure. OCI Auth Tokens are made for CLI authentication with private registries, you generate it in IAM and use as password when doing
docker login. SSH keys are more for compute access, not registry, and D is unrelated here. Pretty confident unless OCI changed something super recently.C or B. Seen some practice tests mention SSH keys or JWTs for OCI, but docs lean to Auth Token-worth reviewing Oracle's own guide before sticking to A every time.
I don’t think it’s B. A
A here, pretty sure. OCI Auth Tokens are specifically for authenticating Docker CLI to the Container Registry, you generate them in IAM and use them like a password with
docker login. Haven't seen any docs recommending JWT or SSH for this purpose, correct me if I'm missing something.C is not correct here, it's A. Docker CLI with OCI Container Registry needs an Auth Token, not an SSH key pair. OCI docs are clear on this for private registry access.
Be respectful. No spam.
Q: 4
How does the Oracle Cloud Infrastructure Container Engine for Kubernetes (OKE) Cluster Autoscaler
determine when to create new nodes for an OKE cluster?
Options
Discussion
B tbh
B . A trips people up, but autoscaler looks at pending pods, not just CPU spikes.
Probably B, that's how autoscalers in Kubernetes work. Official docs and hands-on labs help clarify this if you want extra confirmation.
Option B here, since it's when pod resource requests can't be met that new nodes are created. Not entirely sure though.
B Saw a similar question on another practice, and it's about pending pods with unsatisfied resource requests, not utilization or custom metrics. Pretty sure it's B due to how autoscalers work in Kubernetes.
Be respectful. No spam.
Q: 5
As a cloud engineer, you are responsible for managing a Kubernetes cluster on the Oracle Cloud
Infrastructure (OCI) platform for your organization. You are looking for ways to ensure reliable
operations of Kubernetes at scale while minimizing the operational overhead of managing the
worker node infrastructure.
Which cluster option is the best fit for your requirement?
Options
Discussion
Option B. Serverless virtual nodes mean zero node admin overhead, so matches the question.
B
Its D
Be respectful. No spam.
Q: 6
How can you run applications on GPU worker nodes in clusters created using Container Engine for
Kubernetes (OKE)?
Options
Discussion
D talks about CPU resource requests, but if the question asked for 'CPU' not 'GPU' in the spec would your pick change?
Be respectful. No spam.
Q: 7
What is the correct approach to upgrade an Oracle Container Engine for Kubernetes (OKE) Cluster to
a newer version of Kubernetes?
Options
Discussion
Option A that's what I've seen in similar exam questions-really clear way to ask it.
Honestly, B seems right to me. The OCI Console can handle the upgrade in one workflow, so it's a common trap here.
My vote is A, but if the node pools aren't compatible with the new control plane version, you'll have issues. The upgrade order matters since nodes need to match the control plane version after. Pretty sure that's what the docs say too.
A for sure
Be respectful. No spam.
Q: 8
As a DevOps engineer working on managing clusters on the OCI platform for your organization, which
statement is true about managing cluster add-ons in OCI OKE Cluster?
Options
Discussion
Option A here. Essential add-ons like core DNS can't be disabled at cluster creation, they're required for cluster ops. Pretty sure that's what the docs highlight too. If anyone's seen different in recent OCI updates let me know.
A that's what came up in a similar question on my last practice. Essentials can't be skipped at creation.
I'd pick D, thinking disabling in the console removes the add-on from the cluster.
A tbh, but best to check Oracle's official docs or run through their OKE hands-on labs if you're prepping.
A imo, but I'd double check the official OCI docs or their practice exams to be certain.
Its D, thanks for making the options super clear on this one.
Be respectful. No spam.
Q: 9
A team wants to deploy artificial intelligence and machine learning workloads in their OCI Container
Engine for Kubernetes (OKE) cluster. They prioritize strong isolation, cost-efficiency, and the ability to
leverage serverless capabilities.
Which solution is best suited for their requirements?
Options
Discussion
Nah, D is tempting for isolation but the question wants an OKE serverless solution. A checks all the boxes here.
Hmm, I still say D. Container Instances look serverless and feel more isolated to me, so I'm sticking with that.
Guessing D for strong isolation with serverless-Container Instances might be more cost-efficient too.
Yeah, A fits best for serverless plus strong isolation. Virtual nodes cover all their needs here.
C/D? Managed nodes could work for cost, but serverless and isolation make me think D might fit too. Not certain though.
Self-managed nodes don't give the security or serverless benefits, so A is the better call. Virtual nodes check off isolation and cost-efficiency (no infra to manage). B would need manual ops. Disagree?
Be respectful. No spam.
Q: 10
You are a developer and have been asked to develop an e-commerce website for your organization. It
must support a variety of clients including desktop browsers, mobile browsers and native mobile
applications.
Which two approaches can you use to build the application to achieve deployment independence,
easier technology upgrades, and resiliency to architecture changes? (Choose two.)
Options
Discussion
B and E are right here. Microservices fit best for deployment independence and easier tech upgrades since each service can be swapped out or updated separately. Monoliths don’t give the same flexibility. Pretty sure about this, but open to other ideas.
B tbh, D is a trap here since monoliths aren't great for upgrades or independence.
B and E for sure. Microservices let you update individual parts and swap tech stacks without downtime. Saw a similar question on another Oracle exam, same logic.
If the question said "best for rapid MVP delivery" instead of focusing on deployment independence, would monolithic options like A make more sense?
Be respectful. No spam.
Question 1 of 20 · Page 1 / 2