Skip to content

Commit

Permalink
Merge pull request #425 from alphagov/gp3_disks
Browse files Browse the repository at this point in the history
Use GP3 disk type where GP2 was used in EC2 instances
  • Loading branch information
Lee Porte committed Feb 8, 2021
2 parents 9123d1e + e7de0f3 commit 9e6f5ad
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
---
- type: replace
path: /resource_pools/name=vms/cloud_properties/ephemeral_disk/type
value: gp3

- type: replace
path: /disk_pools/name=disks/cloud_properties/type
value: gp3

6 changes: 3 additions & 3 deletions manifests/cloud-config/paas-bootstrap-cloud-config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,15 +24,15 @@ vm_types:
auto_assign_public_ip: true
ephemeral_disk:
size: 20480
type: gp2
type: gp3

- name: concourse
cloud_properties:
iam_instance_profile: (( grab $CONCOURSE_INSTANCE_PROFILE ))
instance_type: (( grab $CONCOURSE_INSTANCE_TYPE ))
ephemeral_disk:
size: 102400
type: gp2
type: gp3

- name: concourse_worker
cloud_properties:
Expand All @@ -41,7 +41,7 @@ vm_types:
instance_type: (( grab $CONCOURSE_INSTANCE_TYPE ))
ephemeral_disk:
size: 102400
type: gp2
type: gp3


vm_extensions:
Expand Down

0 comments on commit 9e6f5ad

Please sign in to comment.