Can anyone suggest me options for "zero configuration" (meaning minimal configuration) deployment of code on an arbitrary cloud service?
Zero Configuration Cloud Deployment
Collapse
X
-
Guest
-
Hello,
Some well-known examples of such configuration management systems include:
Chef
Puppet
These tools are fantastic. You can keep re-running the configuration as many times as you want. You just need to meet the description specified. If the specified files are placed in certain directories with certain contents, then they will be created (or modified). Packages will be installed only if they need to be, or if their version differs from what the recipes specify.
Comment