Identity service for EOEPCA project.
- About the Project
- Getting Started
- Documentation
- Usage
- Roadmap
- Contributing
- Debug
- License
- Contact
- Acknowledgements
Identity offers seemingly authentication and authorization to be added to Applications.
Includes four main components:
- Keycloak integration: Open Source Identity and Access Management.
- Gatekeeper proxy integration: Authentication Proxy to enable seemless authentication and authorization to be added to Applications. Interacts with Keycloak.
- Keycloak client: Keycloak client written in Python based on python-keycloak package.
- Identity API: Restful API using Flask Framework to be consumed by Identity Manager. Interacts with Keycloak API.
Using Docker compose:
docker-compose up -d --build
Using Helm:
kubectl apply -f infra/cert-issuer.yaml
helm install identity infra
- Docker
- Docker Compose
or - Helm
- Kubernetes
- Rancher (Optional)
- Get into EOEPCA's development environment
vagrant ssh
- Clone the repo
git clone https://github.com/EOEPCA/um-identity-service.git
- Change local directory
cd um-identity-service
- Run with Docker compose
docker compose up -d --build
- Run with Helm
helm install identity-service helm
The component documentation can be found at https://eoepca.github.io/um-identity-service/.
- Docker-compose:
Keycloak
- http://localhost
Gatekeeper Proxy
- http://localhost:3000
Identity API
- http://localhost:8080
Resource server demo
- http://localhost:7072
Add 127.0.0.1 keycloak
to hosts file to be able to run locally.
- Helm charts:
Keycloak
- https://identity.keycloak.nip.ioGatekeeper Proxy
- https://identity.proxy.nip.io
Identity API
- https://identity.api.nip.io
Resource server demo
- https://identity.demo.nip.io
See the open issues for a list of proposed features (and known issues).
Contributions are what make the open source community such an amazing place to be learn, inspire, and create. Any contributions you make are greatly appreciated.
- Fork the Project
- Create your Feature Branch (
git checkout -b feature/AmazingFeature
) - Commit your Changes (
git commit -m 'Add some AmazingFeature'
) - Push to the Branch (
git push origin feature/AmazingFeature
) - Open a Pull Request
Debug Helm Charts:
cd infra/charts/identity-keycloak
helm template identity-keycloak --debug . > keycloak-chart.log
cd infra/charts/identity-gatekeeper
helm template identity-gatekeeper --debug . > gatekeeper-chart.log
cd infra/charts/identity-api
helm template identity-api --debug . > identity-api-chart.log
cd infra/charts/identity-postgres
helm template identity-postgres --debug . > postgres-chart.log
cd infra/charts/identity-spring-boot-echo
helm template identity-postgres --debug . > spring-boot-echo-chart.log
Distributed under the Apache-2.0 License. See LICENSE
for more information.
Project Link: https://github.com/EOEPCA/um-identity-service
- README.md is based on this template by Othneil Drew.