Skip to content

Commit

Permalink
Share lakefs config values between nessie and lakefs containers
Browse files Browse the repository at this point in the history
  • Loading branch information
arielshaqed committed Nov 15, 2020
1 parent 331f771 commit b810243
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/nessie.yaml
Expand Up @@ -78,6 +78,9 @@ jobs:
name: Run latest lakeFS app
needs: deploy-image
runs-on: ubuntu-latest
env:
LAKEFS_AUTH_ENCRYPT_SECRET_KEY: some random secret string
LAKEFS_DATABASE_CONNECTION_STRING: postgres://lakefs:lakefs@postgres/postgres?sslmode=disable
steps:
- name: Check-out code
uses: actions/checkout@v2
Expand Down
4 changes: 2 additions & 2 deletions nessie/ops/docker-compose.yaml
Expand Up @@ -7,8 +7,8 @@ services:
depends_on:
- "postgres"
environment:
- LAKEFS_AUTH_ENCRYPT_SECRET_KEY=some random secret string
- LAKEFS_DATABASE_CONNECTION_STRING=postgres://lakefs:lakefs@postgres/postgres?sslmode=disable
- LAKEFS_AUTH_ENCRYPT_SECRET_KEY=${LAKEFS_AUTH_ENCRYPT_SECRET_KEY}
- LAKEFS_DATABASE_CONNECTION_STRING=${LAKEFS_DATABASE_CONNECTION_STRING}
- LAKEFS_BLOCKSTORE_TYPE=${LAKEFS_BLOCKSTORE_TYPE}
- LAKEFS_BLOCKSTORE_LOCAL_PATH=/home/lakefs
- LAKEFS_GATEWAYS_S3_DOMAIN_NAME=s3.local.lakefs.io:8000
Expand Down

0 comments on commit b810243

Please sign in to comment.