GitHub Action - Setup secure CockroachDB

Viewed 29

I would like to automatically start CockroachDB (as a container) with GitHub Actions for automated tests. These tests include testing all ssl modes. That's why I would like to add a user and certificates to CRDB. I searched for environment variables but the there is no documentation for it on the website. At least not for the container.

Currently I only add it insecurely:

  test-backend:
    runs-on: ubuntu-latest

    services:
      cockroachdb:
        image: cockroachdb/cockroach
        ports:
          - 26257:26257
1 Answers
Related