https://github.com/open-policy-agent/contrib
Integrations, examples, and proof-of-concepts that are not part of OPA proper.
https://github.com/open-policy-agent/contrib
contrib hack integrations opa open-policy-agent proof-of-concept
Last synced: 6 months ago
JSON representation
Integrations, examples, and proof-of-concepts that are not part of OPA proper.
- Host: GitHub
- URL: https://github.com/open-policy-agent/contrib
- Owner: open-policy-agent
- License: apache-2.0
- Created: 2017-04-25T21:22:53.000Z (over 8 years ago)
- Default Branch: main
- Last Pushed: 2024-11-29T19:36:40.000Z (10 months ago)
- Last Synced: 2025-03-29T09:12:15.069Z (6 months ago)
- Topics: contrib, hack, integrations, opa, open-policy-agent, proof-of-concept
- Language: Go
- Homepage: http://www.openpolicyagent.org/
- Size: 18.3 MB
- Stars: 331
- Watchers: 18
- Forks: 153
- Open Issues: 9
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Open Policy Agent - Contributions
This repository holds integrations, examples, and proof-of-concepts that work with the Open Policy Agent (OPA) project.
## Examples and Integrations
- [Kafka Authorization](./kafka_authorizer)
- [HTTP API Authorization (Spring Security)](./spring_authz)
- [HTTP API Authorization (Linkerd)](./linkerd_authz)
- [HTTP API Authorization (Python)](./api_authz)
- [HTTP API Authorization (Dart)](./dart_authz)
- [HTTP API Authorization (Kong)](./kong_api_authz)
- [SSH and sudo Authorization (PAM)](./pam_opa)
- [Puppet Authorization](./puppet_example)
- [Container Image Policy (Kubernetes and CoreOS Clair)](./image_enforcer)
- [Data Filtering (SQL)](./data_filter_example)
- [Data Filtering (Elasticsearch)](./data_filter_elasticsearch)
- [Data Filtering (MongoDB)](./data_filter_mongodb)
- [Data Filtering (Azure)](./data_filter_azure)
- [Cloud Foundry Policies](./cloud_foundry)
- [Decision Logger Plugin](./decision_logger_plugin_example)
- [IPTables (Linux)](./opa-iptables)
- [IPTables (Envoy)](./envoy_iptables)
- [JUnit Test Format Conversion](./junit)
- [Kubernetes Authorization](./k8s_authorization)
- [Kubernetes Node Selector](./k8s_node_selector)
- [Kubernetes API Client](./k8s_api_client)
- [Grafana Dashboard](./grafana-dashboard)
- [OpenAPI Specification for OPA](./open_api)
- [SonarCloud Test Coverage Conversion](./sonarcloud)For a comprehensive list of integrations, see the OPA [ecosystem](https://www.openpolicyagent.org/docs/latest/ecosystem/) page.
## Contributing
If you have built an integration, example, or proof-of-concept on top of OPA that you would like to release to the community, feel free to submit a Pull Request against this repository. Please create a new top-level directory containing:
- A README.md explaining what your integration does
- A Makefile to build your integration## Building and Releasing
Most integrations include a top-level Makefile with two targets:
* `build` - compiles/lints/tests the integration
* `push` - builds the integration and publishes artifactsMany of the integrations produce one or more Docker images. These Docker images can be pushed to the hub.docker.com/u/openpolicyagent repository (assuming you are authorized.)
The Makefile in this directory contains `build` and `push` targets to build and push all integrations.