Browse Source

grow and resize /var partition for online deployment_type

Jason DeTiberus 9 years ago
parent
commit
76ad5ac047
1 changed files with 7 additions and 0 deletions
  1. 7 0
      playbooks/aws/openshift-cluster/templates/user_data.j2

+ 7 - 0
playbooks/aws/openshift-cluster/templates/user_data.j2

@@ -1,4 +1,6 @@
 #cloud-config
+devices: ['/var'] # Workaround for https://bugs.launchpad.net/bugs/1455436
+
 mounts:
 - [ xvdb ]
 - [ ephemeral0 ]
@@ -13,4 +15,9 @@ write_files:
 
 {% if deployment_type == 'online' %}
 disable_root: 0
+growpart:
+  mode: auto
+  devices: ['/var']
+runcmd:
+- xfs_growfs /var
 {% endif %}