InterviewSolution
| 1. |
Can you explain the “infrastructure as code” (IaC) concept? |
|
Answer» As the name indicates, IaC mainly relies on perceiving infrastructure in the same way as any code which is why it is commonly referred to as “programmable infrastructure”. It simply provides means to define and MANAGE the IT infrastructure by using configuration files. This concept came into prominence because of the LIMITATIONS associated with the traditional way of managing the infrastructure. Traditionally, the infrastructure was managed manually and the dedicated people had to set up the servers physically. Only after this step was done, the application would have been deployed. Manual configuration and SETUP were constantly prone to human errors and inconsistencies. This also involved increased cost in hiring and managing multiple people ranging from network engineers to hardware technicians to manage the infrastructural tasks. The major problem with the traditional approach was decreased scalability and application availability which impacted the speed of request processing. Manual configurations were also time-consuming and in CASE the application had a sudden spike in user usage, the administrators would desperately work on keeping the system available for a large load. This would impact the application availability. IaC SOLVED all the above problems. IaC can be implemented in 2 approaches:
|
|