An open API service indexing awesome lists of open source software.

https://github.com/feast-dev/feast-keto-auth-server


https://github.com/feast-dev/feast-keto-auth-server

Last synced: 5 months ago
JSON representation

Awesome Lists containing this project

README

          

# Feast Keto Authorization Adaptor

This application acts as an external HTTP authorization adaptor/proxy for Feast to integrate with [Keto](https://github.com/ory/keto).

> :warning: **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
```