automation-suite
2023.10
false
EKS/AKS 上的 Automation Suite 安装指南
- 概述
- 要求
- 安装
- 安装后
- 迁移和升级
- 监控和警示
- 集群管理
- 特定于产品的配置
- 故障排除
重要 :
新发布内容的本地化可能需要 1-2 周的时间才能完成。
有关 EKS/AKS 上 Automation Suite 中的集群级别和 Orchestrator 级别存储配置选项的参考。
Orchestrator 支持以下存储配置:
- 集群级别的存储配置;
- Orchestrator 级别的存储配置。
我们建议使用与外部存储配对的集群级别配置。这使 Orchestrator 可以自动检测和使用这些设置,而无需其他配置。
配置 Azure/Amazon S3 存储桶
要配置 Orchestrator 级别存储提供程序,请通过以下步骤更新 Orchestrator 参数。有关更多详细信息,请参阅配置 Orchestrator 参数。
- 在配置文件的
orchestrator下,添加包含存储类型和连接字符串的legacy_storage_provider部分,如以下示例所示:"orchestrator": { "enabled": true, "legacy_object_storage": { "type": "Azure", "connection_string": "DefaultEndpointsProtocol=https;AccountName=usr;AccountKey=...;EndpointSuffix=core.windows.net" } }"orchestrator": { "enabled": true, "legacy_object_storage": { "type": "Azure", "connection_string": "DefaultEndpointsProtocol=https;AccountName=usr;AccountKey=...;EndpointSuffix=core.windows.net" } } - 使用
type参数设置所需的提供程序。可能的值为:Azure、AWS和Minio。一些注意事项:storage.type参数值区分大小写;- 不支持文件系统存储配置。
- 使用
connection_string参数添加存储提供程序的连接字符串。有关连接字符串格式的详细信息,请参阅 UiPath.Orchestrator.dll.config 的Storage.Location部分。
备注:
由于提供程序端的同源策略,Orchestrator 网页浏览器对 Amazon 和 Azure 存储桶的访问可能会受到限制。要成功访问此类存储桶的内容,您必须配置相应的提供程序以允许来自 Orchestrator 的跨域请求。有关说明,请参阅CORP/CSP 配置。
配置 SMB 网络共享
要使用网络文件存储,请编辑以下 Orchestrator ArgoCD 应用程序参数:
storage.type = smbstorage.smb.domainstorage.smb.passwordstorage.smb.sourcestorage.smb.usernamestorage.smb.size
将文件上传到存储
当 Orchestrator 使用集群级别存储配置时,可以使用 Orchestrator 配置程序工具将文件上传到存储。为此,请使用以下命令:
./orchestrator_configurator.sh -s path
./orchestrator_configurator.sh -s path
系统会将该路径中的子文件夹上传到配置的存储空间。
如果在集群级别使用外部存储配置,则必须通过包含 --use-external-storage 标记来指明这一点。