Azure devops applications
CICD process with azure and on premises services. Azure PAASservices exp.
Good to have .net full stack application technologies.
Exp35 years.
Please find below for AzureDevOps questioner. Kindly use this while you are doing interview screening ofcandidates.
- Do you have experience in TFS /VSTS/Azure DevOps
Answer: anyone should be Yes
- Have any experience with Build and Release pipelines for ASP/ ASP Core
Answer: Yes
- Have any experience with Build and Release pipelines for SQL Server using SQL CLI or dacpack
Answer: Yes
- Have any experience with Git repository or Git Commands (Make sure its not a Git Hub)
Answer: Clone pull push fetch and Merge
- Tasks involved in ASP project Build pipeline
Answer: Nuget Restore Build and copy artifacts and Publish
- Tasks involved in ASP project Release pipeline
Answer:
- Download artifact
- configure Deployment IIS authentication using WINRRAM or IIS task for deployment wwwroot.
- Take app pool offline and deploy the artifact (application)
- Any experience on Unit testing in Pipelines
Answer: Yes
- Any experience on code quality tools such as Sonar cube or Fortify
Answer: Yes
- How to create a new git branch from Master branch
Answer:
- Right click on master branch
- Select create local branch
- Select Master in the popup window
- Provide Name to New branch
- Click Ok
- How to configure Agent for Build pipeline in windows
Answer:
- Download Agent package from DevOps Site
- Unpack the agent into the directory of your choice. Then runconfig.cmd. This will ask you a series of questions to configure the agent.
- How many agent services types we can configure and explain them
Answer:
- Interactive and service
- As a service. You can leverage the service manager of the operating system to manage the lifecycle of the agent. In addition the experience for autoupgrading the agent is better when it is run as a service.
- As an interactive process with autologon enabled. In some cases you might need to run the agent interactively for production use such as to run UI tests. When the agent is configured to run in this mode the screen saver is also disabled. Some domain policies may prevent you from enabling autologon or disabling the screen saver. In such cases you may need to seek an exemption from the domain policy or run the agent on a workgroup computer where the domain policies do not apply.
- How to configure preapprover policy into CD pipeline
Answer:
- In your Azure DevOps project go to the resource (eg environment) that needs to be protected.
- Navigate toApprovals and Checksfor the resource.
- SelectCreate provide the approvers and an optional message and selectCreateagain to complete the addition of the manual approval check.