FusionAuth with Cloud SQL Postgres managed database
-
Can you run FusionAuth on GCP Cloud Run connected to a Cloud SQL Postgres managed database? And the search engine is Elastic Search.
Any suggestions on you to do this?
pulled over from https://github.com/FusionAuth/fusionauth-issues/issues/1980
-
This should work, though this is not a common config.
Here are the suggested startup and liveness probes which worked for a community member:
I have configured the startup and liveness probes as follows, and they are working well: Startup probe http /api/status periodSeconds: 2s initialDelaySeconds: 0s timeoutSeconds: 1s failureThreshold: 10 Liveness probe http /api/status periodSeconds: 10s initialDelaySeconds: 0s timeoutSeconds: 1s failureThreshold: 3
More details and discussion on the GH issue: https://github.com/FusionAuth/fusionauth-issues/issues/1980