automation-suite
2024.10
true
- 概述
- 要求
- 预安装
- 安装
- 安装后
- 迁移和升级
- 集群管理
- 特定于产品的配置
- 故障排除
通过运算符 Hub 部署 Redis
![](https://docs.uipath.com/_next/static/media/grid.05ebd128.png?w=3840&%3Bq=100)
OpenShift 上的 Automation Suite 安装指南
上次更新日期 2024年12月18日
通过运算符 Hub 部署 Redis
Automation Suite 上的 UiPath™ 产品需要使用 Redis 以确保缓存功能。 您可以通过以下选项来满足 Redis 缓存要求:
-
在 OpenShift 集群或 OpenShift 集群外部的其他服务器上安装和配置 Redis。
-
在 OpenShift 集群上安装 Redis 企业版运算符。
注意: Automation Suite 不附带 Redis 企业运算符许可证。 您必须直接从 Redis 获取许可证。
要通过 Orchestrator Hub 安装 Redis 企业版运算符,请按照本部分中的说明进行操作。
注意:如果使用 Redis Enterprise Orchestrator 版本 6.2.18-41 或更早版本,则必须在安装运算符之前安装安全上下文约束。 有关更多信息,请参阅Redis 文档。
采取以下步骤,通过 Orchestrator Hub 安装 Redis 企业版运算符:
- 在 OpenShift 界面中,导航到“ Operators” >“OperatorHub ”。
- 在搜索字段中,搜索 “ Redis Enterprise ”。
- 在结果列表中选择“ Redis 提供的 Redis 企业版运算符”。 该条目被标记为 “ 已认证”。 默认情况下,映像从 Red Hat 注册表中拉取。
- 在 “安装运算符”页面上,为运算符指定命名空间。 仅支持每个运算符一个命名空间。
- 使用要安装的版本更新频道。 有关特定版本的更多信息,请参阅运算符发行说明。
- 选择批准策略。 对于生产系统,请使用“手动”以确保运算符更新需要您的批准。
- 选择“安装”并批准安装计划。
您可以在 Orchestrators > 已安装的运算符中监控 Redis 企业版运算符订阅的状态。
要通过 OrchestratorHub 部署 Redis,要求您将以下部分添加到
input.json
配置文件中。 将<redis-namespace>
和<password>
占位符替换为适当的值:"fabric": {
"redis": {
"hostname": "redb.<redis-namespace>.svc.cluster.local",
"port": 6380,
"password": "<password>",
"tls": false
}
},
"fabric": {
"redis": {
"hostname": "redb.<redis-namespace>.svc.cluster.local",
"port": 6380,
"password": "<password>",
"tls": false
}
},
要检索密码,请运行以下命令:
oc get secret -n <redis-namespace> redb-redb -o json | jq -r '.data.password' | base64 -d
oc get secret -n <redis-namespace> redb-redb -o json | jq -r '.data.password' | base64 -d