- Automation Suite on Linux Release Notes
- Automation Suite on EKS/AKS Release Notes
2023.10.2
Release date: February 28, 2024
Automation Suite 2023.4.5 and 2023.10.2 include an upgrade to Kubernetes 1.26.11. As such, when upgrading Automation Suite, you must ensure you do not downgrade Kubernetes. To do that, when moving from Automation Suite 2023.4.5 or a later minor version to the next major version, you must upgrade to 2023.10.2 at a minimum.
Erratum - Added March 25, 2024: We now support Microsoft SQL Server 2022.
net.ipv4.conf.all.rp_filter
is set to 0
.
For more on the prerequisite script, see Validating the prerequisites.
We have expanded our OS support to include RHEL 8.9, alongside existing support for 8.6 and 8.8 versions.
We continue to provide security updates and patches to address Common Vulnerabilities and Exposures (CVEs).
- Erratum - added August 26, 2024: We have fixed an issue causing the migration from an in-cluster objectstore to an external objectstore to fail.
-
Erratum - added May 29, 2024: Network policies in Airflow could previously cause improper functioning of the DNS. The issue no longer occurs.
-
We have fixed an issue causing the installer to wrongly ask you to provide a temporary registry whenever adding a new product to an existing Automation Suite installation. The issue caused a failure in the installation process.
-
Previously, certain SQL server certificate validations within our flow were being suppressed. We have changed this practice to allow for earlier identification of potential problems.
-
We have fixed an issue causing the side-by-side upgrade of Automation Suite 2022.10 or earlier to 2023.10.0 or 2023.10.1 to fail when Apps was enabled and you used Kerberos authentication for the SQL Server database.
-
We have modified stored procedures to handle collation differences between the SQL server and SQL database.
orchestrator.testautomation
section of the cluster_config.json
file, the uipathctl
binary ignores the connection string and uses the one under the orchestrator
section instead. To address the problem, see the Troubleshooting section.
Erratum - added October 17, 2024: When deploying Automation Suite on AWS machines where only IMDSv2 is enabled, installation fails while populating node labels. To address the issue, see the Important note in Optional: Enabling resilience to zonal failures in a multi-node HA-ready production cluster.
system-upgrade
namespace. If the upgrade command fails at any stage (infra, fabric, or service upgrade), take the following steps before
retrying the upgrade:
-
List the existing jobs in the
system-upgrade
namespace:kubectl get jobs -n system-upgrade
kubectl get jobs -n system-upgrade -
Delete the failed jobs:
kubectl -n system-upgrade delete jobs <failed_jobs>
kubectl -n system-upgrade delete jobs <failed_jobs>When running the command, replace the<failed_jobs>
placeholder with the names of the failed jobs, separated by spaces.
We fixed the issue in Automation Suite 2023.10.6.
System.Net.Http.HttpRequestException: The proxy tunnel request to proxy 'http://<proxyFQDN>:8080/' failed with status code '404'.
System.Net.Http.HttpRequestException: The proxy tunnel request to proxy 'http://<proxyFQDN>:8080/' failed with status code '404'.
To fix the issue, see the Troubleshooting section.
Erratum - added August 14, 2024: An issue affects the support bundle generation when using an external OCI registry in an offline environment. Under these conditions, the generated support bundle lacks historical logs and cannot upload to any selected external object storage. To fix this issue, see the Troubleshooting section.
Erratum - added August 14, 2024: Upgrading from Automation Suite 2023.10.x fails due to the Longhorn storage classes still being present. To solve the problem, you must clean up the Longhorn storage classes manually, by running the following command:
for sc in $(kubectl get sc -o json | jq -r '.items[] | select(.provisioner=="driver.longhorn.io") | .metadata.name'); do
kubectl delete sc "${sc}"
done
for sc in $(kubectl get sc -o json | jq -r '.items[] | select(.provisioner=="driver.longhorn.io") | .metadata.name'); do
kubectl delete sc "${sc}"
done
We fixed the issue in Automation Suite 2023.10.5.
ListBucket API
prerequisite check fails when using an external objectstore. However, AI Center and Task Mining do not use the ListBucket API
permission. We removed the unnecessary check in Automation Suite 2023.10.5.
Erratum - added August 14, 2024: You cannot enable SSO for ArgoCD due to an issue with the Dex image versions. We fixed the issue in Automation Suite 2023.10.5.
snapshot-controller-crds
pod to remain in the CrashLoopBackOff state after upgrade. This occurs due to a conflict between the newly installed snapshot-controller
and the existing one during the RKE2 upgrade. To fix the issue, see the Troubleshooting section.
Erratum - added July 24, 2024: Using an external storage with a proxy environment causes Orchestrator, the Automation Suite Support Bundle Tool, Prometheus, Thanos, Fluentd, etc. to fail. We fixed the issue in Automation Suite 2023.10.3.
/identity_/api/setting
endpoint. Use the appropriate access token and make sure the request body contains the necessary details like in the following
example:
{
"Settings": [
{
"Key": "Email.Smtp.Host",
"Value": "SendGrid"
},
{
"Key": "Email.Smtp.Port",
"Value": "587"
},
{
"Key": "Email.Smtp.UserName",
"Value": ""
},
{
"Key": "Email.Smtp.Domain",
"Value": ""
},
{
"Key": "Email.Smtp.FromEmail",
"Value": "no-reply@uipath.com"
},
{
"Key": "Email.Smtp.FromDisplayName",
"Value": "UiPath Platform"
},
{
"Key": "Email.Smtp.EnableSsl",
"Value": "true"
},
{
"Key": "Email.Smtp.UseDefaultCredentials",
"Value": ""
},
{
"Key": "Email.Smtp.Password",
"Value": ""
},
{
"Key": "Email.Smtp.ConnectionTimeout",
"Value": "180000"
}
],
"PartitionGlobalId": ""
}
{
"Settings": [
{
"Key": "Email.Smtp.Host",
"Value": "SendGrid"
},
{
"Key": "Email.Smtp.Port",
"Value": "587"
},
{
"Key": "Email.Smtp.UserName",
"Value": ""
},
{
"Key": "Email.Smtp.Domain",
"Value": ""
},
{
"Key": "Email.Smtp.FromEmail",
"Value": "no-reply@uipath.com"
},
{
"Key": "Email.Smtp.FromDisplayName",
"Value": "UiPath Platform"
},
{
"Key": "Email.Smtp.EnableSsl",
"Value": "true"
},
{
"Key": "Email.Smtp.UseDefaultCredentials",
"Value": ""
},
{
"Key": "Email.Smtp.Password",
"Value": ""
},
{
"Key": "Email.Smtp.ConnectionTimeout",
"Value": "180000"
}
],
"PartitionGlobalId": ""
}
When generating the support bundle, an incorrect FQDN is used for AKS on Azure Government. We fixed the issue in Automation Suite 2023.10.4.
platform-service-secrets
. This issue occurs when the host admin is updated and no longer matches the one in the platform-service-secrets
. To fix this, the password in the platform-service-secrets
must be updated to match the new admin password.
Erratum - added April 19, 2024: When uninstalling rook-ceph, an error message related to missing external object storage configuration is displayed. This issue accours even though the migration is succesful. This behavior is fixed in Automation Suite 23.10.3.
Erratum - added April 19, 2024: In certain situations, Ceph metrics and alerts are missing from the monitoring dashboards. To fix the issue, see the Troubleshooting section.
We recommend that you regularly check the deprecation timeline for any updates regarding features that will be deprecated and removed.
To find out what has changed on each Automation Suite product, visit the following links.
If the product is greyed out, this new Automation Suite version does not bring any changes to it.
This Automation Suite release bundles the following internal components:
Component |
Version |
---|---|
RKE2 |
1.26.11 |
ArgoCD |
2.7.7 |
logging-operator | 4.1.0 |
logging-operator-logging | 4.1.0 |
gatekeeper | 3.12.0 |
rook-ceph |
1.9.4 |
prometheus-pushgateway |
2.1.6 |
cert-manager |
1.12.3 |
rancher-istio |
102.2.0-up1.17.2 |
rancher-logging | 102.0.1-up3.17.10 |
rancher-logging-crd | 102.0.1-up3.17.10 |
rancher-monitoring-crd | 102.0.1-up40.1.2 |
rancher-gatekeeper-crd | 102.1.0-up3.12.0 |
rancher-gatekeeper |
100.2.0-up3.8.1 |
rancher-monitoring |
102.0.1-up40.1.2 |
longhorn |
1.4.3 |
longhorn-crd |
1.1.100 |
reloader |
0.0.129 |
csi-driver-smb |
1.10.0 |
velero |
3.1.6 |
redis-operator |
7.2.4-7 |
redis-cluster |
7.2.4-64 |
The migration tool version you need depends on the standalone products you plan to migrate and the targeted Automation Suite version. For more details, see Migration compatibility matrix.
For instructions on migrating a standalone product to the current version of Automation Suite, see Full migration.
- Upgrade considerations
- Support for Microsoft SQL Server 2022
- New prerequisites validation check
- New RHEL version support
- Security enhancements
- Bug fixes
- Known issues
- Test Automation SQL connection string is ignored
- Installation fails while populating node labels
- Cannot upgrade due to failed jobs in system-upgrade namespace
- Pods cannot communicate with FQDN in a proxy environment
- Weak ciphers in TLS 1.2
- Support bundle log collection failure
- Upgrades fail due to Longhorn being uninstalled
- Unnecessary ListBucket API prerequisite check fails for external objectstore
- Cannot enable SSO for ArgoCD
- snapshot-controller-crds pod in CrashLoopBackOff state after upgrade
- Components fail when using external object storage with proxy environment
- Issue with saving custom configurations in email settings
- Support bundle generated with incorrect FQDN for AKS on Azure Government
- CrashLoopBackOff error due to mismatched host admin password
- Error message while uninstalling rook-ceph post migrating to a S3 object-store
- Issues affecting Ceph metrics and alerts
- Issues related to CephMgrIsAbsent alerts
- Deprecation timeline
- Bundling details
- Product versions
- Internal third-party component versions
- Migration tool version