Kong Manager not showing information on home screen

I installed Kong on my EKS cluster. When I access Kong Manager, the Overview screen does not show the Cluster information. I would like to know why this information is not listed.

env:
  database: postgres
  pg_host: my_host
  pg_port: 5432
  pg_user: my_user
  pg_password: my_passwd
  pg_database: my_db
  pg_schema: public
  log_level: debug

ingressController:
  enabled: false

admin:
  enabled: true
  type: ClusterIP
  http:
    enabled: true
    servicePort: 8001
  tls:
    enabled: false

manager:
  enabled: true
  type: ClusterIP
  http:
    enabled: true
    servicePort: 8002
  tls:
    enabled: false

proxy:
  type: LoadBalancer
  http:
    enabled: true
    servicePort: 80
  tls:
    enabled: false

migrations:
  enabled: true
  annotations: {}

plugins:
  configMaps: []

# opcional: ativar plugins padrões
customPlugins:
  - kong-plugin-prometheus

I find the problem.
I needed expose the Admin endpoint to Manager.

So, now works.

This topic was automatically closed 2 days after the last reply. New replies are no longer allowed.