Deployment Manager
Introduction to the deployment manager
We'll cover the following...
We have seen all of the IAAS, PAAS, and SAAS services provided by cloud computing. The next thing which comes is automating the creation of these services. Cloud Deployment Manager provides the feature of creating resources using code. Let’s explore it.
Introduction
Google Cloud Deployment Manager allows you to specify all the resources needed for your application in a declarative format using YAML.
You can also use Python or Jinja2 templates to parameterize the configuration and allow the reuse of common deployment paradigms such as a load-balanced, auto-scaled instance group.
Treat your configuration as a code and perform repeatable deployments.
Deployment Manager API
To use deployment manager open the main
...