- Overview
- Requirements
- Pre-installation
- Preparing the installation
- Downloading the installation packages
- Configuring the OCI-compliant registry
- Granting installation permissions with cluster roles
- Granting installation permissions without cluster roles
- Installing and configuring the service mesh
- Installing and configuring the GitOps tool
- Installing the External Secrets Operator
- Deploying Redis through OperatorHub
- Applying miscellaneous configurations
- Running uipathctl
- Installation
- Post-installation
- Migration and upgrade
- Monitoring and alerting
- Cluster administration
- Product-specific configuration
- Orchestrator advanced configuration
- Configuring Orchestrator parameters
- Configuring appSettings
- Configuring the maximum request size
- Overriding cluster-level storage configuration
- Configuring NLog
- Saving robot logs to Elasticsearch
- Configuring credential stores
- Configuring encryption key per tenant
- Cleaning up the Orchestrator database
- Skipping host library installation
- AI Trust Layer
- Troubleshooting
- 500 errors and rate limiting on S3 requests in ODF
- External Secrets troubleshooting
- Configuring CSI driver tolerations for ODF 4.20
- Temporal as a Service troubleshooting
- AI Center and Document Understanding pods fail to start with TLS certificate verification enabled
- Studio Desktop cannot load Integration Service connectors and activities
- TLS certificate validation errors
- Manual ArgoCD NetworkPolicy mitigation (GHSA-47m3-95c7-g2g8)
- Configuring resource requests and limits for uipathctl-created workloads
Install and run uipathctl CLI tool for managing Automation Suite on OpenShift.
uipathctl is a UiPath® command-line tool that allows you to perform various operations in Automation Suite on EKS/AKS, Automation Suite on OpenShift, and Automation Suite on Linux.
You can use uipathctl to check prerequisites in your environment, install Automation Suite, as well as configure and manage it from a single unified CLI.
You can install uipathctl on the Linux, macOS, and Windows platforms.
Currently, uipathctl is only compatible with the x86 architecture. You cannot run uipathctl on machines based on the ARM architecture, such as Macs with Apple Silicon (M series) CPUs.
For details, including a complete list of uipathctl operations, refer to the uipathctl Reference Guide.
Common operations
After you install uipathctl, the primary commands for an Automation Suite installation are:
uipathctl prereq create input.json --versions versions.json- generate the required SQL databases and object storage buckets. Refer to Setting up the required resources.uipathctl prereq run input.json --versions versions.json- validate the environment before installing. Refer to Prerequisite checks.uipathctl manifest apply input.json --versions versions.json- install Automation Suite. Refer to Installing Automation Suite.
For the full command list, refer to the uipathctl Reference Guide.
Installing uipathctl on Linux
To install uipathctl on Linux, take the following steps:
-
Download the version of the
uipathctlbinary that you are interested in. For instructions, refer to Downloading the installation packages. -
Uncompress
uipathctland add it to your PATH:tar xzvf uipathctl-linux-amd64.tar.gz chmod +x uipathctl export PATH=$PATH:$(pwd)tar xzvf uipathctl-linux-amd64.tar.gz chmod +x uipathctl export PATH=$PATH:$(pwd) -
Verify if
uipathctlworks:uipathctl versionuipathctl versionThe command prints some version information, as shown in the following example:
Version: 2.2510.0 ...Version: 2.2510.0 ...
Installing uipathctl on Windows
To install uipathctl on Windows, take the following steps:
-
Download the version of the
uipathctlbinary that you are interested in. For instructions, refer to Downloading the installation packages. -
Uncompress
uipathctland add it to your PATH:tar xzvf uipathctl-windows-amd64.tar.gztar xzvf uipathctl-windows-amd64.tar.gzAppend or prepend the
uipathctlbinary folder to yourPATHenvironment variable. -
Verify it is working:
uipathctl versionuipathctl versionThe command prints some version information, as shown in the following example:
Version: 2.2510.0 ...Version: 2.2510.0 ...
Installing uipathctl on macOS
To install uipathctl on macOS, take the following steps:
-
Download the version of the
uipathctlbinary that you are interested in. For instructions, refer to Downloading the installation packages. -
Uncompress
uipathctland add it to your PATH:tar xzvf uipathctl-darwin-amd64.tar.gz chmod +x uipathctl export PATH=$PATH:$(pwd)tar xzvf uipathctl-darwin-amd64.tar.gz chmod +x uipathctl export PATH=$PATH:$(pwd) -
Verify if
uipathctlworks:uipathctl versionuipathctl versionThe command prints some version information, as shown in the following example:
Version: 2.2510.0 ...Version: 2.2510.0 ...
Specifying the kubeconfig file
By default, uipathctl uses the kubeconfig file at the default location (~/.kube/config on Linux and macOS, or the equivalent user profile path on Windows). This kubeconfig determines which cluster and which credentials uipathctl uses to run each command.
If you need uipathctl to use a different kubeconfig file, make sure it is configured accordingly for every command you run. Otherwise, uipathctl falls back to the default kubeconfig.
You can specify the kubeconfig file in either of the following ways:
- Set the
KUBECONFIGenvironment variable to the path of your kubeconfig file. All subsequentuipathctlcommands use this file:export KUBECONFIG=<kubeconfigpath>export KUBECONFIG=<kubeconfigpath> - Pass the
--kubeconfigflag to eachuipathctlcommand:uipathctl <command> --kubeconfig <kubeconfigpath>uipathctl <command> --kubeconfig <kubeconfigpath>
To see all the flags available for a given command, including --kubeconfig, run:
uipathctl <command> --help
uipathctl <command> --help
Telemetry
By default, telemetry is sent from uipathctl to UiPath® at each command execution. This helps us improve our products and user experience.
To opt out of telemetry, set the UIPATHCTL_TELEMETRY_OPTOUT environment variable to 1:
export UIPATHCTL_TELEMETRY_OPTOUT=1
export UIPATHCTL_TELEMETRY_OPTOUT=1