Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

enhance vm-types samples for cloud infras #100

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 7 additions & 3 deletions docs/deployment-manifests-part-1.md
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,11 @@ 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:
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:

```yaml
vm_types:
Expand All @@ -168,7 +172,7 @@ vm_types:
root_disk_type: pd-ssd
```

For Amazon EC2 it might include:
* Amazon EC2:

```yaml
vm_types:
Expand All @@ -179,7 +183,7 @@ vm_types:
size: 20_000
```

For vSphere it might include:
* vSphere:

```yaml
vm_types:
Expand Down