Automation Suite
2021.10
false
Banner background image
Automation Suite Installation Guide
Last updated Apr 19, 2024

Failure to Resize Objectstore PVC

Description

This issue occurs when the objectstore resize-pvc operation fails with the following error:
Failed resizing the PVC: <pvc name> in namespace: rook-ceph, ROLLING BACKFailed resizing the PVC: <pvc name> in namespace: rook-ceph, ROLLING BACK

Solution

To fix this problem, take the following steps:

  1. Run the following script manually:

    #!/bin/sh
    ROOK_CEPH_OSD_PREPARE=$(kubectl -n rook-ceph get pods | grep rook-ceph-osd-prepare-set | awk '{print $1}')
    if [[ -n ${ROOK_CEPH_OSD_PREPARE} ]]; then
        for pod in ${ROOK_CEPH_OSD_PREPARE}; do
        echo "Start deleting rook ceph osd pod $pod .."
        kubectl -n rook-ceph delete pod $pod
        echo "Done"
        done;
    fi#!/bin/sh
    ROOK_CEPH_OSD_PREPARE=$(kubectl -n rook-ceph get pods | grep rook-ceph-osd-prepare-set | awk '{print $1}')
    if [[ -n ${ROOK_CEPH_OSD_PREPARE} ]]; then
        for pod in ${ROOK_CEPH_OSD_PREPARE}; do
        echo "Start deleting rook ceph osd pod $pod .."
        kubectl -n rook-ceph delete pod $pod
        echo "Done"
        done;
    fi
  2. Rerun the objectstore resize-pvc command.
  • Description
  • Solution

Was this page helpful?

Get The Help You Need
Learning RPA - Automation Courses
UiPath Community Forum
Uipath Logo White
Trust and Security
© 2005-2024 UiPath. All rights reserved.