编辑 Redis Enterprise 远程集群

使用 Redis Enterprise for Kubernetes 编辑现有 RERC 的配置详细信息。

适用于 Kubernetes 的 Redis Enterprise
注意:
此功能在 6.4.2-6 及更高版本中正式发布受支持。其中一些功能在 6.4.2-4 和 6.4.2-5 中作为预览版提供。请升级到 6.4.2-6 以获取完整的正式发布功能和错误修复。以及后来。

在 RedisEnterpriseCluster (REC) 可以参与主动-主动数据库之前,它需要附带的 RedisEnterpriseRemoteCluster (RERC) 自定义资源。RERC 包含允许 REC 链接到 RedisEnterpriseActiveActiveDatabase (REAADB) 的详细信息。RERC 资源在 REAADB 资源中列出,以成为主动-主动数据库的参与集群。

RERC 控制器通过其外部地址定期连接到本地 REC 端点,以确保其设置正确。为此,外部负载均衡器必须支持 NAT 发夹。在某些云环境中,这可能涉及禁用负载均衡器目标组的 IP 保留。

有关更多详细信息,请参阅 RERC API 参考

编辑 RERC

使用kubectl patch rerc <rerc-name> --type merge --patch命令以使用您的更改修补本地 RERC 自定义资源。有关可用字段的完整列表,请参阅 RERC API 参考

以下示例编辑了dbFqdnSuffix字段,用于名为rerc-ohare.

kubectl patch rerc rerc-ohare --type merge --patch \
'{"spec":{"dbFqdnSuffix": "-example2-cluster-rec-chicago-ns-illinois.example.com"}}'

Update RERC secret

If the credentials are changed or updated for a REC participating cluster, you need to manually edit the RERC secret and apply it to all participating clusters.

  1. On the local cluster, update the secret with new credentials and name it with the following convention: redis-enterprise-<rerc-name>.

    A secret for a remote cluster named rerc-ohare would be similar to the following:

    apiVersion: v1
    data:
      password: PHNvbWUgcGFzc3dvcmQ+
      username: PHNvbWUgdXNlcj4
    kind: Secret
    metadata:
      name: redis-enterprise-rerc-ohare
    type: Opaque
    
  2. Apply the file.

    kubectl apply -f <secret-file>
    
  3. Watch the RERC to verify the status is "Active" and the spec status is "Valid."

    kubectl get rerc <rerc-name>
    

    The output should look like this:

     NAME        STATUS   SPEC STATUS   LOCAL
      rerc-ohare   Active   Valid         true
    

    To troubleshoot invalid configurations, view the RERC custom resource events and the Redis Enterprise operator logs.

  4. Verify the status of each REAADB using that RERC is "Active" and the spec status is "Valid."

    kubectl get reaadb reaadb-boeing
    
    NAME              STATUS   SPEC STATUS   LINKED REDBS   REPLICATION STATUS
    reaadb-boeing     active   Valid                        up
    

    To troubleshoot invalid configurations, view the RERC custom resource events and the Redis Enterprise operator logs.

  5. Repeat the above steps on all other participating clusters.

RATE THIS PAGE
Back to top ↑