You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
. Evacuate the node xref:evacuating-a-node[following the previous steps].
147
+
148
+
. Stop the `docker` and `atomic-openshift-node` services:
149
+
+
150
+
----
151
+
# systemctl stop docker atomic-openshift-node
152
+
----
153
+
154
+
. Resize the existing disk as desired. This can can depend on your environment:
155
+
+
156
+
* If you are using LVM (Logical Volume Manager):
157
+
+
158
+
** link:https://access.redhat.com/documentation/en-us/red_hat_enterprise_linux/7/html/logical_volume_manager_administration/lv#LV_remove[Remove the logical volume]:
159
+
+
160
+
----
161
+
# lvremove /dev/docker_vg/docker/lv
162
+
----
163
+
+
164
+
** link:https://access.redhat.com/documentation/en-us/red_hat_enterprise_linux/7/html/logical_volume_manager_administration/vg_admin#VG_remove[Remove the Docker volume group]:
165
+
+
166
+
----
167
+
# vgremove docker_vg
168
+
----
169
+
+
170
+
** link:https://access.redhat.com/documentation/en-us/red_hat_enterprise_linux/7/html/logical_volume_manager_administration/physvol_admin#PV_remove[Remove the physical volume]:
171
+
+
172
+
----
173
+
# pvremove /dev/<my_previous_disk_device>
174
+
----
175
+
+
176
+
* If you are using a cloud provider, you can detach the disk,
177
+
destroy the disk, then create a new bigger disk, and attach it to the instance.
178
+
+
179
+
* For a non-cloud environment, the disk and file system can be resized. See the
180
+
following solution for more information:
181
+
+
182
+
** https://access.redhat.com/solutions/199573
183
+
184
+
. Verify that the *_/etc/sysconfig/container-storage-setup_* file is correctly
185
+
configured for the new disk by checking the device name, size, etc.
186
+
187
+
. Run `docker-storage-setup` to reconfigure the new disk:
188
+
+
189
+
----
190
+
# docker-storage-setup
191
+
INFO: Volume group backing root filesystem could not be determined
192
+
INFO: Device /dev/xvdb is already partitioned and is part of volume group docker_vol
0 commit comments