010-160 · Question #101
How is a new Linux computing instance provisioned in an IaaS cloud?
The correct answer is E. A provider-specific configuration file describing the desired installation is uploaded to the cloud provider. In IaaS cloud environments, Linux instances are provisioned by supplying a provider-specific configuration file that declaratively describes the desired system, rather than performing any manual installation steps.
Question
Options
- AThe standard Linux installer has to be run through a remote console.
- BAfter buying a Linux distribution, its vendor delivers it to a cloud instance.
- CThe installation has to be prepared in a local virtual machine which is then copied to the cloud.
- DThe cloud hosting organization provides a set of pre-prepared images of popular Linux distributions.
- EA provider-specific configuration file describing the desired installation is uploaded to the cloud provider.
How the community answered
(41 responses)- C5% (2)
- D2% (1)
- E93% (38)
Why each option
In IaaS cloud environments, Linux instances are provisioned by supplying a provider-specific configuration file that declaratively describes the desired system, rather than performing any manual installation steps.
IaaS abstracts the underlying hardware entirely, so running a manual Linux installer via remote console is not required or supported as a standard provisioning method.
Linux distributions are open-source and are not sold by vendors who then deliver them to cloud instances; this describes neither how Linux licensing works nor how IaaS provisioning functions.
Copying a local virtual machine to the cloud is a migration or import workflow, not the standard IaaS provisioning process for a new instance.
While cloud providers maintain pre-prepared base images (e.g., AMIs in AWS), simply selecting an image describes only part of the process and does not capture the configuration-driven provisioning model that defines IaaS automation.
IaaS platforms support declarative provisioning through configuration files such as cloud-init YAML or vendor-specific templates (e.g., AWS CloudFormation, Azure ARM templates), which describe the desired Linux environment and instruct the provider to automate instance creation. This approach is central to IaaS because it abstracts hardware management and enables repeatable, automated deployments without manual intervention. The configuration file is supplied at launch time and processed by the provider to produce a fully configured, running instance.
Concept tested: IaaS Linux instance provisioning via configuration files
Source: https://cloudinit.readthedocs.io/en/latest/explanation/introduction.html
Topics
Community Discussion
No community discussion yet for this question.