Skip to content

Commit

Permalink
Upgrade the default BOSH VM Type to large (#44)
Browse files Browse the repository at this point in the history
It used to be small, but this is too small. Now we go largeboi.
  • Loading branch information
jhunt authored and Proplex committed Oct 17, 2018
1 parent 584bd84 commit 0849976
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
2 changes: 1 addition & 1 deletion MANUAL.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ director.

- `bosh_vm_type` - The name of the `vm_type` (per cloud-config) that
will be used to deploy the BOSH director VM. Defaults to
`small`.
`large`.

- `bosh_disk_pool` - The name of the `disk_type` (per cloud-config)
that will be used to back the persistent storage of the BOSH
Expand Down
4 changes: 4 additions & 0 deletions ci/release_notes.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,10 @@ This release updates several of the core components and BOSH CPIs.
release, and will continue to receive security updates through
April of 2021. Trusty Tahr 14.04 is EOL as of April 2019.

- The default `bosh_vm_type` has changed from `small` to `large`.
If you deployed BOSH using the defaults, upgrading to this kit
version will incur a rebuild of the BOSH VM.

# Core Components

| Release | Version | Release Date |
Expand Down
2 changes: 1 addition & 1 deletion hooks/check
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
ok=yes
if [[ -n "$GENESIS_CLOUD_CONFIG" ]] ; then
if ! want_feature proto; then
cloud_config_needs vm_type $(lookup params.bosh_vm_type small)
cloud_config_needs vm_type $(lookup params.bosh_vm_type large)
cloud_config_needs network $(lookup params.bosh_network bosh)
cloud_config_needs disk_type $(lookup params.bosh_disk_pool bosh)

Expand Down
4 changes: 2 additions & 2 deletions manifests/bosh/bosh.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ meta:
azs: [z1]

params:
bosh_network: bosh
bosh_network: bosh
bosh_disk_pool: bosh
bosh_vm_type: small
bosh_vm_type: large

session_timeout: 1 # In days

Expand Down

0 comments on commit 0849976

Please sign in to comment.