在更改 infinispan 服务器中的任何内容时,我收到未经授权的操作错误。例如。关闭集群重新平衡时,我收到错误
Unexpected error when rebalancing disabled. "Unauthorized action."
我已经使用 Helm Chart 和以下 Values.yaml 安装了 infinispan 服务器
deploy:
replicas: 2
container:
env:
storage:
size: 1Gi
storageClassName: "infinispan-storage"
# [USER] Set `ephemeral: true` to delete all persisted data when clusters shut down or restart.
ephemeral: true
resources:
# [USER] Specify the CPU limit and the memory limit for each pod.
limits:
cpu: 500m
memory: 512Mi
# [USER] Specify the maximum CPU requests and the maximum memory requests for each pod.
requests:
cpu: 500m
memory: 512Mi
为了登录服务器,首先我尝试了开发人员(用户),其相应的秘密是自动生成的,其次,我还创建了管理员用户。但仍然受到未经授权的操作。
我们也遇到了这个问题,它似乎与使用 SSL 之前使用反向代理有关。在路由上禁用 SSL,现在在 HTTP 下工作正常。
如果我们找到恢复它的解决方案,我会通知您。