Which of the tools is not mandated for integration in a CI pipeline ? (i)Terraform (ii)Chef (iii)Maven (iv)Selenium
Answers
Answered by
5
Answer is (iv) Selenium. .
Chef is useful for an efficient continuous delivery management. It is a tool to automatically build and deploy an application. So it is used in CI pipeline.
Selenium is an software automation tool for testing the UI (user interface) of an application after it is delivered and installed on a site. Often UI is not mandated during CI pipeline. Reasons are that it delays the process and the UI test results failing need not always mean incorrect UI behavior. Selenium could be run in parallel with continuous integration pipeline process.
Maven is an software automation tool that helps build an application. It contains the components and their dependencies. So it is useful for continuous integration pipeline.
Terraform is mandated for a CI (continuous Integration) pipeline. Terraform is a software tool with which we build, then change/update, and maintain the versions of the infrastructure. It is good, relatively easy, safe and efficient too.
Terraform contains configuration files that list the software components that an application or a Datacenter requires to run.
Chef is useful for an efficient continuous delivery management. It is a tool to automatically build and deploy an application. So it is used in CI pipeline.
Selenium is an software automation tool for testing the UI (user interface) of an application after it is delivered and installed on a site. Often UI is not mandated during CI pipeline. Reasons are that it delays the process and the UI test results failing need not always mean incorrect UI behavior. Selenium could be run in parallel with continuous integration pipeline process.
Maven is an software automation tool that helps build an application. It contains the components and their dependencies. So it is useful for continuous integration pipeline.
Terraform is mandated for a CI (continuous Integration) pipeline. Terraform is a software tool with which we build, then change/update, and maintain the versions of the infrastructure. It is good, relatively easy, safe and efficient too.
Terraform contains configuration files that list the software components that an application or a Datacenter requires to run.
Answered by
2
Maven is not suitable and mandated for the integration of the CI pipeline and it is not recommended.
There are ample reasons that support this thought.
Maven is unreliable at time and also works a bit slower than other tool. It only uses java a plug in language which makes is a limited tool.
Similar questions