From 4a18216043bc058e3ffdf8de5cd6c882b5f9746c Mon Sep 17 00:00:00 2001 From: Vasyl Tretiakov Date: Wed, 15 Jan 2020 16:42:21 +0200 Subject: [PATCH 1/2] enhance vm-types samples for cloud infras * we are discussing cloud config, `bosh cloud config` is just a way to access it * we are focusing on `vm-types` section, not the complete cloud config * bullet points eliminate the need for repetitive sentences for each cloud infra --- docs/deployment-manifests-part-1.md | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/docs/deployment-manifests-part-1.md b/docs/deployment-manifests-part-1.md index f5a7511..ae92a86 100644 --- a/docs/deployment-manifests-part-1.md +++ b/docs/deployment-manifests-part-1.md @@ -157,7 +157,9 @@ Each BOSH director has a Cloud Config specification. We can download and view a bosh cloud-config ``` -There are several areas of configuration but for now let's look at one - `vm_type` - the specification of the size of servers. An example of a `bosh cloud-config` for GCP might look like: +There are several areas of configuration but for now let's look at one - `vm_type` - the specification of the size of servers. Several examples of Cloud Config `vm_types` sections for popular cloud infrastructures are presented below: + +* GCP: ```yaml vm_types: @@ -168,7 +170,7 @@ vm_types: root_disk_type: pd-ssd ``` -For Amazon EC2 it might include: +* Amazon EC2: ```yaml vm_types: @@ -179,7 +181,7 @@ vm_types: size: 20_000 ``` -For vSphere it might include: +* vSphere: ```yaml vm_types: From 5e66e9726fae64d4f0c27ea5f77879d596f9b536 Mon Sep 17 00:00:00 2001 From: Vasyl Tretiakov Date: Wed, 15 Jan 2020 18:58:53 +0200 Subject: [PATCH 2/2] enhance vm_types intro * split intro and examples into separate paragraphs * clarified we are speaking of server resource specifications --- docs/deployment-manifests-part-1.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/docs/deployment-manifests-part-1.md b/docs/deployment-manifests-part-1.md index ae92a86..0f6d401 100644 --- a/docs/deployment-manifests-part-1.md +++ b/docs/deployment-manifests-part-1.md @@ -157,7 +157,9 @@ Each BOSH director has a Cloud Config specification. We can download and view a bosh cloud-config ``` -There are several areas of configuration but for now let's look at one - `vm_type` - the specification of the size of servers. Several examples of Cloud Config `vm_types` sections for popular cloud infrastructures are presented below: +Cloud Config configuration hierarchy is quite rich. For now let's look at server resource specifications referred to as `vm_types`. + +Several examples of Cloud Config `vm_types` sections for popular cloud infrastructures are presented below: * GCP: