Hi there, I am deploying supertokens-core on EKS. ...
# general
u
Hi there, I am deploying supertokens-core on EKS. I have setup a dedicated namespace and I have a RDS (postgres) instance with a RDS proxy ready to go. I am using Helm to deploy the core system, however the pod liveliness probe fails. When I look at the logs, it says
"Error connecting to PostgreSQL instance. Please make sure that PostgreSQL is running and that you have specified the correct values for ('postgresql_host' and 'postgresql_port') or for 'postgresql_connection_uri'"
My database config is below:
Copy code
database:
  # -- database uri (connection string),
  uri: "rds-supertokens-proxy.proxy.region.rds.amazonaws.com"
  # -- database name
  name: supertokens
  # -- database port
  port: 5432
  # -- database host
  host: postgres.postgres
  # -- database user 
  user: postgres
  # -- database password
  password: rds-password
Am I missing something in the config?
2 Views