Posts

Showing posts with the label Ansible Interview Questions

Ansible Interview Questions

Image
  Q1. What is CI/CD? Continuous Integration is a software development practice where members of a team integrate their work frequently, usually, each person integrates at least daily leading to multiple integrations per day. Each integration is verified by an automated build (including test) to detect integration errors as quickly as possible. Many teams find that this approach leads to significantly reduced integration problems and allows a team to develop cohesive software more rapidly. Continuous Delivery is a process where you build software in such a way that it can be released to production at any time. Consider the diagram below: Let me explain the above diagram: Automated build scripts will detect changes in Source Code Management (SCM) like Git. Once the change is detected, source code would be deployed to a dedicated build server to make sure build is not failing and all test classes and integration tests are running fine. Then, the build application is deployed on the te...