automation-suite
2021.10
false
- Overview
- Requirements
- Installation
- Post-installation
- Cluster administration
- Monitoring and alerting
- Migration and upgrade
- Product-specific configuration
- Best practices and maintenance
- Troubleshooting
- How to Troubleshoot Services During Installation
- How to Uninstall the Cluster
- How to clean up offline artifacts to improve disk space
- How to disable TLS 1.0 and 1.1
- How to enable Istio logging
- How to manually clean up logs
- How to clean up old logs stored in the sf-logs bundle
- How to debug failed Automation Suite installations
- How to disable TX checksum offloading
- Unable to run an offline installation on RHEL 8.4 OS
- Error in Downloading the Bundle
- Offline installation fails because of missing binary
- Certificate issue in offline installation
- SQL connection string validation error
- Failure After Certificate Update
- Automation Suite Requires Backlog_wait_time to Be Set 1
- Cannot Log in After Migration
- Setting a timeout interval for the management portals
- Update the underlying directory connections
- Kinit: Cannot Find KDC for Realm <AD Domain> While Getting Initial Credentials
- Kinit: Keytab Contains No Suitable Keys for *** While Getting Initial Credentials
- GSSAPI Operation Failed With Error: An Invalid Status Code Was Supplied (Client's Credentials Have Been Revoked).
- Login Failed for User <ADDOMAIN><aduser>. Reason: The Account Is Disabled.
- Alarm Received for Failed Kerberos-tgt-update Job
- SSPI Provider: Server Not Found in Kerberos Database
- Failure to get the sandbox image
- Pods not showing in ArgoCD UI
- Redis Probe Failure
- RKE2 Server Fails to Start
- Secret Not Found in UiPath Namespace
- ArgoCD goes into progressing state after first installation
- Unexpected Inconsistency; Run Fsck Manually
- Missing Self-heal-operator and Sf-k8-utils Repo
- Degraded MongoDB or Business Applications After Cluster Restore
- Unhealthy Services After Cluster Restore or Rollback
- Using the Automation Suite Diagnostics Tool
- Using the Automation Suite Support Bundle Tool
- Exploring Logs
Resizing PVC
Automation Suite Installation Guide
Last updated Aug 26, 2024
Resizing PVC
Right now we are only supporting PVC resizing for Objectstore.
To view more information about Objectstore, run the following command:
sudo ./configureUiPathAS.sh objectstore --help
sudo ./configureUiPathAS.sh objectstore --help
Output:
************************************************************************************
Manage objectstore configuration
Usage:
configureUiPathAS.sh objectstore [command]
configureUiPathAS.sh objectstore [flags]
Available Commands:
resize-pvc Resize PVC
Flags:
-h|--help Display help
************************************************************************************
************************************************************************************
Manage objectstore configuration
Usage:
configureUiPathAS.sh objectstore [command]
configureUiPathAS.sh objectstore [flags]
Available Commands:
resize-pvc Resize PVC
Flags:
-h|--help Display help
************************************************************************************
Note: PVC resize can be dangerous and will result in downtime of entire or few of the effect components of cluster. So please,
take caution before you are performing this operation.
To view more information about resizing Objectstore PVC, run the following command.
sudo ./configureUiPathAS.sh objectstore resize-pvc --help
sudo ./configureUiPathAS.sh objectstore resize-pvc --help
Output:
***************************************************************************************
Resize PVC provided by different CSI drivers
Arguments
-s|--size [Required] : Size of PVC. Allowed formats are
- Plain integer
- A fixed-point number using one of these suffixes: E, P, T, G, M, k
- A fixed-point number using one of power-of-two equivalents suffixes: Ei, Pi, Ti, Gi, Mi, Ki
-b|--sub-component [Required] : Sub-component to resize. Possible Values [mon|data]
-d|--debug Increase logging verbosity to show all debug logs
-h|--help Show this help message and exit
-f|--force Allow deletion of pods to resize the PVC. This may cause downtime
Examples
Update PVC size for objectstore mon to 105 Gi
configureUiPathAS.sh objectstore resize-pvc --size 105Gi --sub-component "mon"
***************************************************************************************
***************************************************************************************
Resize PVC provided by different CSI drivers
Arguments
-s|--size [Required] : Size of PVC. Allowed formats are
- Plain integer
- A fixed-point number using one of these suffixes: E, P, T, G, M, k
- A fixed-point number using one of power-of-two equivalents suffixes: Ei, Pi, Ti, Gi, Mi, Ki
-b|--sub-component [Required] : Sub-component to resize. Possible Values [mon|data]
-d|--debug Increase logging verbosity to show all debug logs
-h|--help Show this help message and exit
-f|--force Allow deletion of pods to resize the PVC. This may cause downtime
Examples
Update PVC size for objectstore mon to 105 Gi
configureUiPathAS.sh objectstore resize-pvc --size 105Gi --sub-component "mon"
***************************************************************************************
To resize the data storage of ceph objectstore, run the following command:
sudo ./configureUiPathAS.sh objectstore resize-pvc --size 1024Gi --sub-component data
sudo ./configureUiPathAS.sh objectstore resize-pvc --size 1024Gi --sub-component data
This command will resize the data storage PVC to 1 TiB.
Before starting the PVC resize operation, tool will warn you about the impact. You must accept and only then proceed. You
can also use
--force
flag to skip the warning.
Note: If the attempt to resize the objstore pvc operation failed, see the Troubleshooting section for a fix.