Keycloak &引用;无法连接到数据库"--&燃气轮机;无法从KeyClope(AKS)连接到Azure PostgreSQL数据库

Keycloak &引用;无法连接到数据库"--&燃气轮机;无法从KeyClope(AKS)连接到Azure PostgreSQL数据库,keycloak,azure-aks,azure-postgresql,Keycloak,Azure Aks,Azure Postgresql,使用在Azure Kubernetes服务中部署KeyClope时,它无法连接到Azure PostgreSQL数据库 在我的本地计算机中提取存储库后,对文件进行了以下更改:- 并在文件中提供以下提到的值 出于测试目的,我在Azure中禁用了强制SSL连接。 然后,在从本地(本地PC)存储库部署helm图表后,得到下面提到的错误:- 请说明此问题的原因。有相关消息吗?我也面临着同样的问题,有什么消息吗?我面临着几乎相同的问题。 env: - name: DB_VENDOR val

使用在Azure Kubernetes服务中部署KeyClope时,它无法连接到Azure PostgreSQL数据库

在我的本地计算机中提取存储库后,对文件进行了以下更改:-

并在文件中提供以下提到的值

出于测试目的,我在Azure中禁用了强制SSL连接。 然后,在从本地(本地PC)存储库部署helm图表后,得到下面提到的错误:-


请说明此问题的原因。

有相关消息吗?我也面临着同样的问题,有什么消息吗?我面临着几乎相同的问题。
env:
  - name: DB_VENDOR
    value: postgres
  - name: JDBC_PARAMS
    value: "true"
  - name: DB_ADDR
    value: {{ .Values.postgresql.postgresqlDbhost | quote }}
  - name: DB_PORT
    value: {{ .Values.postgresql.service.port | quote  }}
  - name: DB_DATABASE
    value: {{ .Values.postgresql.postgresqlDatabase | quote }}
  - name: DB_USER
    value: {{ .Values.postgresql.postgresqlUsername | quote }}
  - name: DB_PASSWORD
    value: {{ .Values.postgresql.postgresqlPassword | quote }}
  - name: JDBC_PARAMS
    value: "ssl=false"
postgresql:
  # If `true`, the Postgresql dependency is enabled
  enabled: false
  # PostgreSQL DB Host to Connect
  postgresqlDbhost: blabladb.postgres.database.azure.com
  # PostgreSQL User to create
  postgresqlUsername: someuser@keyclockdb
  # PostgreSQL Password for the new user
  postgresqlPassword: !*blabla*!
  # PostgreSQL Database to create
  postgresqlDatabase: blabladb
  # Postgressqlport
  service:
    port: 5432