As a DevOps Engineer, you are tasked with securely storing and versioning your application's source code and automatically build, test, and deploy your application to Oracle Cloud Infrastructure (OCI) platform.
You are told to automate manual tasks and help software teams in managing complex environments at scale.
Which three OCI services can you choose to accomplish these tasks? (Choose three.)
Correct : A, B, D
Oracle Cloud Infrastructure Registry: This service allows you to securely store container images. It is essential for managing the container images used for deployment, making it an important part of the DevOps workflow.
DevOps project: OCI DevOps project is specifically designed to manage the CI/CD pipeline. It helps in automating tasks like building, testing, and deploying applications, which are key activities for managing complex environments and promoting agility in software development.
Container Engine for Kubernetes: Oracle Container Engine for Kubernetes (OKE) is used to deploy applications in a containerized environment. It provides a robust platform for deploying, managing, and scaling containerized applications, which is essential for handling complex environments at scale.
Start a Discussions
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?
Correct : A
To authenticate with the Oracle Cloud Infrastructure Registry (Container Registry) when using the Docker CLI, you need to use an Auth Token. The Auth Token is created in the OCI console and acts as a password for the Docker login command, providing secure access to the container registry.
Start a Discussions
As a DevOps engineer working on a CI/CD pipeline for your company's application, you have completed code analysis, image scanning, and automated testing.
What is the next step to ensure a secure and reliable deployment?
Correct : D
After completing code analysis, image scanning, and automated testing, the next step in the CI/CD pipeline should include a manual review to ensure that all necessary security and quality checks have been performed correctly. Adding an approval stage helps ensure that a secure and reliable deployment is achieved by requiring human verification and approval before proceeding with the deployment to production.
This step adds an extra layer of control to prevent unintended issues from moving forward without further review. It is a common practice in CI/CD pipelines to have an approval step, especially for critical deployments.
Start a Discussions
A fully qualified path to a particular image in an OCIR repository is given as iad.ocir.io/ansh81vru1zp/project01/acme-web-app:version2.0.test.
Identify the two options with correct terms and their associated values. (Choose two.)
Correct : C, E
ansh81vru1zp is the <tenancy-namespace>. In Oracle Cloud Infrastructure Registry (OCIR), the tenancy namespace uniquely identifies the tenancy and is used as part of the image path.
iad is the <region-key>. The region key is the shorthand identifier for the OCI region (iad represents Ashburn region), and it is used in the fully qualified path for images stored in the Oracle Cloud Infrastructure Registry (OCIR).
Start a Discussions
Which is NOT a valid log category for the Oracle Cloud Infrastructure Logging service?
Correct : D
The Oracle Cloud Infrastructure Logging service has several log categories that users can utilize:
Custom Logs: Users can create their own logs to collect application-specific data.
Audit Logs: These logs contain audit records that provide information about activities performed on resources, generated by OCI Audit service.
Service Logs: These are logs generated by OCI services, providing information about the functioning and performance of the services.
Execution Logs is not a valid log category in OCI Logging. There are no 'execution logs' as a defined category for the Logging service.
Start a Discussions