Skip to content

Latest commit

 

History

History
37 lines (28 loc) · 817 Bytes

README.md

File metadata and controls

37 lines (28 loc) · 817 Bytes

Feast Keto Authorization Adaptor

This application acts as an external HTTP authorization adaptor/proxy for Feast to integrate with Keto.

⚠️ This repository is purely an example and should not be used in production!

Running the adaptor

Assuming Keto is running at localhost:4466

mvn spring-boot:run -Dketo.url=https://localhost:4466

Testing the adaptor

mvn clean test

Building the adaptor

mvn clean package

Running the adaptor as a docker container

docker run \
    -e KETO_URL=http://localhost:4466 \
    gcr.io/kf-feast/feast-keto-auth-server:latest

Building the docker container

docker build . \ 
    -t gcr.io/kf-feast/feast-keto-auth-server:latest \
    -t gcr.io/kf-feast/feast-keto-auth-server:0.0.1