Port Ocean is a CLI tool for managing your Port projects.
Project description
Integration Framework
Integration Framework is a solution developed by Port to address the challenges faced while integrating various third-party systems with our developer portal product. This framework provides a standardized approach for implementing integrations, simplifying the process and allowing platform engineers to focus on the core functionality of the third-party system.
Export Architecture
Real-Time updates Architecture
Self Service Architecture
Folder Structure
The Integration Framework follows a specific folder structure within the mono repository. This structure ensures proper organization and easy identification of integration modules. The suggested folder structure is as follows:
integration-framework/
├── framework/
│ ├── main.py
│ └── requirements.txt
| └── ...
└── integrations/
├────integration_name/
│ ├──── main.py
│ └──── requirements.txt
├── ...
└── ...
- The
framework
folder contains the core logic for managing the integration lifecycle. - Each integration is represented by a separate folder inside the
integrations
directory. - Inside each integration folder, you'll find a
main.py
file that implements the core functionality of the integration for the specific third-party system. - The
requirements.txt
file inside each integration folder lists the required dependencies for that integration.
Integration Lifecycle
Configuration
The Integration Framework utilizes a config.yaml
file for configuration. This file specifies the integrations to be used within an array. Each integration has a unique identifier and type, which are used during initialization to update Port accordingly.
Example config.yaml
:
port:
clientId: PORT_CLIENT_ID # Can be loaded via environment variable: PORT_CLIENT_ID
clientSecret: PORT_CLIENT_SECRET # Can be loaded via environment variable: PORT_CLIENT_SECRET
baseUrl: https://api.getport.io/v1
triggerChannel:
type: KAFKA
integrations:
# The name of the integration.
- identifier: "my_kafka_integration"
# The type of the integration.
type: "kafka"
# The configuration of the integration.
config:
bootstrap_servers: "localhost:9092"
Contributing
We welcome contributions to the Integration Framework project. If you have any suggestions, bug reports, or would like to contribute new features, please follow our guidelines outlined in the CONTRIBUTING.md
file.
License
The Integration Framework is open-source software licensed under the Apache 2.0 License. See the LICENSE
file for more details.
Contact
For any questions or inquiries, please reach out to our team at support@getport.io
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Hashes for port_ocean-0.1.0.dev3-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3928060e44743e97feb6b2bf98a165c4d50218877ed5421dfb30a2da246105ca |
|
MD5 | 83d1f743987e4108bab82d8dc85e7824 |
|
BLAKE2b-256 | c04798d8f47edf0d239302cc3c0b96cc6f5a1f0e7270e003c60de80bbe44ac62 |