db-auth-gateway

module
v0.1.9 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jun 7, 2022 License: Apache-2.0, MIT

README

db-auth-gateway

db-auth-gateway

An authentication proxy for Google Cloud managed databases. Based on the ideas of cloudsql-proxy but intended to be run as a standalone network accessible service rather than a sidecar.

We've been using cloudsql-proxy for several years now to power our db-operator project. It has been for the most part reliable but key differences between how we deploy it and Google's reference architecture have led to production issues.

We developed db-auth-gateway to address these issues and add a variety of wish list features such as improved observability, and testing.

Features

  • Connection draining during shutdown to support zero downtime deployments and load balancing.
  • Prometheus metrics support for improved observability.
  • Full testsuite including realistic Google service mocks.
  • Simplified modern code base.

Quickstart

Use docker-compose to start a local PostgreSQL instance, and Google API mock:

make start_mock

Then you can then run db-auth-gateway locally with:

db-auth-gateway --api-endpoint=http://localhost:8080 --credential-file=DISABLED \
--instance=my-project:my-region:my-database

db-auth-gateway will listen on port 5432 (by default) for SQL connections.

PGPASSWORD=mysecretpassword psql -h localhost -p 5432 -d postgres postgres
Flags

db-auth-gateway has a variety of command line flags for configuring its behavior:

Flag Default Description
--credential-file JSON file containing the Google Cloud credentials
--instance Fully qualified database instance to connect to (project:region:name)
--listen :5432 Address and port to listen on
--remote-port 3307 Port to connect to the remote server on
--max-connections 0 The maximum number of active connections. Defaults to 0 (unlimited)
--min-refresh-interval 1m The minimum amount of time to wait between API calls
--periodic-refresh-interval 5m Configuration is eagerly refreshed on a schedule. This is the nominal period between API calls.
--api-endpoint If specified the URL to use for API calls

Development

Prerequisites
Build

To build db-auth-gateway, simply run make without any arguments.

The resulting binary will be written to: ./target/db-auth-gateway.

make
Test

Before committing any code you should always lint and test your changes.

Code Linting
make lint
Running the Tests

First start the Google API mock using docker-compose:

make start_mock

Then run the tests:

make test
End to End Testing

You run the end to end tests with:

make e2e

The tests will start a local instance of db-auth-gateway and verify it is able to connect to and query the Postgres database, and Google API mock.

Acknowledgements

  1. The Go Gopher by Renee French, licensed under the CC BY 3.0.
  2. https://github.com/GoogleCloudPlatform/cloudsql-proxy
  3. https://github.com/jbenet/go-context

Directories

Path Synopsis
api

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL