From 53640b4b27f8edc34fbf397cbbb03ecb5ddf4d45 Mon Sep 17 00:00:00 2001 From: Ron Stone Date: Fri, 6 Aug 2021 08:48:49 -0400 Subject: [PATCH] Fix greybars Fixed greybar on codeblock. Fixed merge conflict. Signed-off-by: Ron Stone Change-Id: I85e76255a971767172c4b9d508ae78c8c54d1ab1 --- .../aio_duplex_install_kubernetes.rst | 42 ++++++++----------- 1 file changed, 18 insertions(+), 24 deletions(-) diff --git a/doc/source/deploy_install_guides/r6_release/bare_metal/aio_duplex_install_kubernetes.rst b/doc/source/deploy_install_guides/r6_release/bare_metal/aio_duplex_install_kubernetes.rst index 78de5fa61..7e2495a81 100644 --- a/doc/source/deploy_install_guides/r6_release/bare_metal/aio_duplex_install_kubernetes.rst +++ b/doc/source/deploy_install_guides/r6_release/bare_metal/aio_duplex_install_kubernetes.rst @@ -616,33 +616,27 @@ Unlock controller-0 # check existing size of docker fs system host-fs-list controller-0 - # check available space (Avail Size (GiB)) in cgts-vg LVG where docker fs is located system host-lvg-list controller-0 - # if existing docker fs size + cgts-vg available space is less than - # 60G, you will need to add a new disk partition to cgts-vg. - - # Assuming you have unused space on ROOT DISK, add partition to ROOT DISK. - # ( if not use another unused disk ) - - # Get device path of ROOT DISK - system host-show controller-0 | grep rootfs - - # Get UUID of ROOT DISK by listing disks - system host-disk-list controller-0 - - # Create new PARTITION on ROOT DISK, and take note of new partition’s ‘uuid’ in response - # Use a partition size such that you’ll be able to increase docker fs size from 30G to 60G - PARTITION_SIZE=30 - system host-disk-partition-add -t lvm_phys_vol ${NODE} ${PARTITION_SIZE} - - # Add new partition to ‘cgts-vg’ local volume group - system host-pv-add controller-0 cgts-vg - sleep 2 # wait for partition to be added - - # Increase docker filesystem to 60G - system host-fs-modify controller-0 docker=60 + # 80G, you will need to add a new disk partition to cgts-vg. + # There must be at least 20GB of available space after the docker + # filesystem is increased. + # Assuming you have unused space on ROOT DISK, add partition to ROOT DISK. + # ( if not use another unused disk ) + # Get device path of ROOT DISK + system host-show controller-0 --nowrap | fgrep rootfs + # Get UUID of ROOT DISK by listing disks + system host-disk-list controller-0 + # Create new PARTITION on ROOT DISK, and take note of new partition’s ‘uuid’ in response + # Use a partition size such that you’ll be able to increase docker fs size from 30G to 60G + PARTITION_SIZE=30 + system host-disk-partition-add -t lvm_phys_vol ${NODE} ${PARTITION_SIZE} + # Add new partition to ‘cgts-vg’ local volume group + system host-pv-add controller-0 cgts-vg + sleep 2 # wait for partition to be added + # Increase docker filesystem to 60G + system host-fs-modify controller-0 docker=60 ------------------------------------- Install software on controller-1 node