diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2018-01-15 16:36:34 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-01-15 16:36:34 -0800 |
commit | cf3210af449231044d9672b69b72e1eb4b541e97 (patch) | |
tree | 02555c2eae0aa4d92305f0cf25ab332eb703ef65 /roles/openshift_aws | |
parent | ba3abc672da4b588b906b99ea515f171dcd8da5a (diff) | |
parent | 08f324a8c82abb86cb041668f54bd1a758a9060d (diff) | |
download | openshift-cf3210af449231044d9672b69b72e1eb4b541e97.tar.gz openshift-cf3210af449231044d9672b69b72e1eb4b541e97.tar.bz2 openshift-cf3210af449231044d9672b69b72e1eb4b541e97.tar.xz openshift-cf3210af449231044d9672b69b72e1eb4b541e97.zip |
Merge pull request #6610 from mazzystr/update_awsec2_root_vol
Automatic merge from submit-queue.
Update to AWS EC2 root vol size so that Health Check tasks pass
AWS EC2s under the ASG and LaunchConfig are deployed with the default 10gb root vol size. Heath Checks fail because / filesystem and /var directory is too small. Health Check wants a minimum of 40Gb. 10Gb is just too small for server operations in general. Let's increase to 100Gb. Cost increase for additional EBS storage will be minimal and give plenty of elbow room for normal server operations.
Diffstat (limited to 'roles/openshift_aws')
-rw-r--r-- | roles/openshift_aws/defaults/main.yml | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/roles/openshift_aws/defaults/main.yml b/roles/openshift_aws/defaults/main.yml index 8c8227b5e..efd2468b2 100644 --- a/roles/openshift_aws/defaults/main.yml +++ b/roles/openshift_aws/defaults/main.yml @@ -98,12 +98,20 @@ openshift_aws_elb_dict: proxy_protocol: True openshift_aws_node_group_config_master_volumes: +- device_name: /dev/sda1 + volume_size: 100 + device_type: gp2 + delete_on_termination: False - device_name: /dev/sdb volume_size: 100 device_type: gp2 delete_on_termination: False openshift_aws_node_group_config_node_volumes: +- device_name: /dev/sda1 + volume_size: 100 + device_type: gp2 + delete_on_termination: True - device_name: /dev/sdb volume_size: 100 device_type: gp2 |