InterviewSolution
| 1. |
Can you compare Chef with Docker? |
|
Answer» A Chef is a CONFIGURATION Management tool which is primarily used by admins and DevOps teams to MANAGE the application environments, web-server configuration, databases, and load balancers. Instructions are created in the form of recipes, that defines the components in the INFRASTRUCTURE and how those components can be DEPLOYED, configured and managed. In a nutshell, it makes it automates the rolling out of changes to various environments or machines. Whereas Docker is a way to package CODE into consistent units of work known as containers. These units of work can then be deployed to development, QA and production environments with far greater ease and consistency. |
|