Skip to content

Latest commit

 

History

History

runtime_config

Google Cloud Runtime Configurator

This template creates a Runtime Configurator with the associated resources.

Prerequisites

Deployment

Resources

Properties

See the properties section in the schema file(s):

Usage

  1. Clone the Deployment Manager samples repository

    git clone https://github.com/GoogleCloudPlatform/cloud-foundation-toolkit
  2. Go to the dm directory

    cd dm
  3. Copy the example DM config to be used as a model for the deployment, in this case examples/runtime_config.yaml

    cp templates/runtime_config/examples/runtime_config.yaml my_runtime_config.yaml
  4. Change the values in the config file to match your specific GCP setup. Refer to the properties in the schema files described above.

    vim my_runtime_config.yaml  # <== change values to match your GCP setup
  5. Create your deployment as described below, replacing <YOUR_DEPLOYMENT_NAME> with your with your own deployment name

    gcloud deployment-manager deployments create <YOUR_DEPLOYMENT_NAME> \
        --config my_runtime_config.yaml
  6. In case you need to delete your deployment:

    gcloud deployment-manager deployments delete <YOUR_DEPLOYMENT_NAME>

Examples