Here's a very basic setup for running the Nessie Server with Keycloak authentication.
It is meant to be used for testing purposes only.
- Start a local Keycloak server
docker run -p 8080:8080 -e KC_BOOTSTRAP_ADMIN_USERNAME=admin -e KC_BOOTSTRAP_ADMIN_PASSWORD=admin --name keycloak quay.io/keycloak/keycloak:latest start-dev
- Log into Keycloak Admin Console at http://localhost:8080/auth/
- Create user
nessie
with passwordnessie
(under themaster
realm) - Goto
Clients > Admin-cli > Advanced Settings
and set Access Token Lifespan to 1 day (for convenience) - Start Nessie server in test mode preconfigured to use the local Keycloak server:
./mvnw -pl :nessie-quarkus quarkus:dev -Dnessie.server.authentication.enabled=true -Dquarkus.oidc.auth-server-url=http://localhost:8080/auth/realms/master -Dquarkus.oidc.client-id=projectnessie
- Generate a token for
nessie
(note that the default token lifespan is pretty short):curl -X POST http://localhost:8080/auth/realms/master/protocol/openid-connect/token \ --user admin-cli:none -H 'content-type: application/x-www-form-urlencoded' \ -d 'username=nessie&password=nessie&grant_type=password' |jq -r .access_token
- Access Nessie API with the auth token
- With
curl
:curl 'http://localhost:19120/api/v1/trees' --oauth2-bearer "$NESSIE_TOKEN" -v
- With Nessie CLI:
nessie --auth-token "$NESSIE_TOKEN" remote show
- With