Skip to content

Commit 39b9588

Browse files
authored
Merge branch 'main' into dev-to-prod
2 parents 3fbc5d8 + 498ea1e commit 39b9588

File tree

79 files changed

+1121
-387
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

79 files changed

+1121
-387
lines changed

docs/actions-and-automations/actions-and-automations.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,9 @@ import PortTooltip from "/src/components/tooltip/tooltip.jsx"
55
One of Port's core offerings is the ability to automate and simplify the processes and routines of your developers.
66
This is done using two powerful tools:
77

8-
## 1. Self-service actions
8+
## 1. Actions
99

10-
Create a wide range of personalized, controlled actions that developers can use to scaffold a service, provision a cloud resource, or any other logic that serves your organization.
11-
Self-service actions drive developer productivity by providing a consistent and repeatable way to perform common tasks, all with guardrails like manual approvals or consumption policies to comply with organizational standards.
10+
Actions are executable pieces of logic that developers or AI agents can run. You can create a wide range of personalized, controlled actions to scaffold a service, provision a cloud resource, or any other logic that serves your organization. Actions drive developer productivity by providing a consistent and repeatable way to perform common tasks, all with guardrails like manual approvals or consumption policies to comply with organizational standards.
1211

1312
:::tip Live demo
1413
For real-world examples of self-service actions, check out our [live demo](https://showcase.port.io/self-serve).
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
2-
"label": "Create self-service actions",
2+
"label": "Create actions",
33
"position": 1
44
}

docs/actions-and-automations/create-self-service-experiences/create-self-service-experiences.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,9 @@ import ExecuteActionLocations from '/docs/actions-and-automations/create-self-se
1414
</center>
1515
<br/>
1616

17-
Drive developer productivity by allowing developers to use self-service actions like scaffolding a service or provisioning a cloud resource. Developer self-service drives consistency and repeatability and ensures that their routines are intuitive and clear, all with guardrails like manual approvals or consumption policies to comply with organizational standards.
17+
Actions are executable pieces of logic that either developers or AI agents can run. They drive developer productivity by enabling them to use actions like scaffolding a service or provisioning a cloud resource.
18+
19+
Actions drive consistency and repeatability and ensure that routines are intuitive and clear, all with guardrails like manual approvals or consumption policies to comply with organizational standards.
1820

1921
Port's action model is designed to be flexible and can be used to cover a wide range of use-cases:
2022

@@ -24,7 +26,7 @@ Port's action model is designed to be flexible and can be used to cover a wide r
2426
4. **Stateful** - every invoked action affects the software catalog by adding/modifying/deleting one or more entities.
2527
5. **Secure by design** - does not require keys to sensitive infrastructure by using an event-based model. All actions are audited and can include guardrails like manual approval and TTL.
2628

27-
## 💡 Common self-service actions
29+
## Common self-service actions
2830

2931
- [**Scaffold** a new service](https://docs.port.io/guides/all/scaffold-a-new-service/).
3032
- [**Create** a cloud resource](https://docs.port.io/guides/all/create-cloud-resource-using-iac).
@@ -37,7 +39,7 @@ In our [live demo](https://showcase.port.io/self-serve), you can see examples fo
3739

3840
## How does it work?
3941

40-
1. A user **executes an action** from Port's UI interface.
42+
1. A user or AI agent **executes an action** from Port's UI interface or through API calls.
4143
2. A pre-defined **payload** containing any desired metadata about the action and its inputs is **sent** to your infrastructure.
4244
3. A **job is triggered** and the user gets a **continuous indication** about its progress.
4345
4. Once the action is running, you can use Port's API to **update Port on its status** and provide information such as **logs and links to the resulting handlers**.

docs/ai-interfaces/context-lake.md

Lines changed: 113 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,113 @@
1+
---
2+
sidebar_position: 9
3+
title: Context Lake
4+
sidebar_label: Context Lake
5+
---
6+
7+
import Tabs from "@theme/Tabs"
8+
import TabItem from "@theme/TabItem"
9+
10+
# Context lake
11+
12+
Port's Context Lake is your unified engineering knowledge layer—connecting data from across your entire toolchain into a single, semantically-rich source of truth. It's not a separate feature, but rather the powerful result of Port's core capabilities working together to provide organizational context that AI agents, developers, and workflows can understand and act upon.
13+
14+
## What comprises the context lake
15+
16+
The context lake transforms scattered data across your engineering tools into unified organizational knowledge. It is built from four core components:
17+
18+
### Software catalog - your data
19+
20+
The [software catalog](/build-your-software-catalog) is where you define YOUR organization's data model using blueprints (services, environments, teams, deployments, incidents, etc.) and populate it with entities from all your tools. This catalog becomes your organizational semantic layer—teaching Port what "service," "deployment," or "incident" means specifically in your context, providing the schema and structure that gives meaning to your data.
21+
22+
### Access controls - data governance
23+
24+
[RBAC and permissions](/sso-rbac/rbac-overview) ensure that the right people and systems see the right data. Teams, roles, and policies control who can view, edit, or act on catalog data, maintaining security while enabling collaboration and providing governed access to your organizational knowledge.
25+
26+
### Scorecards - your standards
27+
28+
[Scorecards](/scorecards/overview) define and track your engineering standards, KPIs, and quality metrics. They encode organizational expectations—production readiness requirements, security compliance rules, operational best practices—as measurable criteria within the Context Lake, providing the organizational standards and quality signals that inform decisions.
29+
30+
### Interface layer - how you access it
31+
32+
Context Lake data becomes actionable through multiple interfaces: **[AI Interfaces](/ai-interfaces/overview)** where AI agents and assistants query through [Port MCP Server](/ai-interfaces/port-mcp-server/overview-and-installation) to understand your organization, **[API](/api-reference/port-api)** for programmatic access, and **[Interface Designer](/customize-pages-dashboards-and-plugins/dashboards/)** with dashboards and visualizations that surface insights to your teams—providing multiple ways to query, visualize, and act on your organizational context.
33+
34+
## Why the context lake matters
35+
36+
<Tabs groupId="context-lake-value" queryString>
37+
<TabItem value="ai-agents" label="For AI agents">
38+
39+
Generic AI doesn't understand what "production-ready" means in YOUR organization, who owns which services, or how your deployment pipeline works. Context Lake provides this semantic understanding, enabling AI agents to:
40+
41+
- Answer ownership questions with definitive data (not guesses from code comments).
42+
- Understand dependencies and relationships between services.
43+
- Follow your organization's standards and guardrails when taking actions.
44+
- Make decisions based on real-time operational context.
45+
46+
</TabItem>
47+
<TabItem value="developers" label="For developers">
48+
49+
Instead of hunting across 10 different tools to understand a service's dependencies, ownership, deployment history, or incident timeline, developers get unified context in one place. The Context Lake connects the dots automatically.
50+
51+
**Benefits:**
52+
- Quick access to service ownership and team information.
53+
- Understand dependencies without switching between tools.
54+
- See complete deployment and incident history in context.
55+
- Get AI-powered insights based on your organization's actual data.
56+
57+
</TabItem>
58+
<TabItem value="platform-teams" label="For platform teams">
59+
60+
Define your organizational semantics once—service definitions, environment types, team structures, standards—and every tool, workflow, and AI agent can consume this shared knowledge. No more syncing configurations across systems.
61+
62+
**Benefits:**
63+
- Single source of truth for organizational definitions.
64+
- Consistent standards across all tools and automations.
65+
- Reduced maintenance overhead from duplicate configurations.
66+
- Enable self-service while maintaining governance.
67+
68+
</TabItem>
69+
</Tabs>
70+
71+
## Context lake in action
72+
73+
<Tabs groupId="context-lake-examples" queryString>
74+
<TabItem value="ownership" label="AI agent understanding ownership">
75+
76+
**Developer asks:** "Who owns the payments service?"
77+
78+
- **Without Context Lake:** AI guesses based on code comments or recent contributors.
79+
- **With Context Lake:** AI queries the catalog → sees Team relation → returns the owning team with Slack channel and on-call schedule.
80+
81+
</TabItem>
82+
<TabItem value="provisioning" label="Autonomous service provisioning">
83+
84+
**AI agent needs to provision a dev environment:**
85+
86+
- **Without Context Lake:** Agent doesn't know company's cloud standards, naming conventions, or cost limits.
87+
- **With Context Lake:** Agent queries blueprints → understands allowed regions, naming patterns, tagging requirements → provisions correctly within organizational guardrails.
88+
89+
</TabItem>
90+
<TabItem value="incident" label="Incident response">
91+
92+
**Alert fires:** "payments-api pod crashing"
93+
94+
- **Without Context Lake:** Engineer hunts through Slack, wiki, runbooks across multiple tools.
95+
- **With Context Lake:** Port surfaces: recent deployments, related PRs, dependent services, ownership, SLOs, past incidents—all in unified context for faster resolution.
96+
97+
</TabItem>
98+
</Tabs>
99+
100+
## Getting started
101+
102+
Building your Context Lake is a natural part of setting up Port:
103+
104+
1. **[Define your data model](/build-your-software-catalog)** - Create blueprints that represent your organization's entities.
105+
2. **[Connect your tools](/build-your-software-catalog/sync-data-to-catalog)** - Ingest data from GitHub, Kubernetes, PagerDuty, and 100+ other integrations.
106+
3. **[Set up relationships](/build-your-software-catalog/customize-integrations/configure-mapping#relations)** - Define how entities connect to each other.
107+
4. **[Configure access controls](/sso-rbac/rbac-overview)** - Ensure proper data governance.
108+
5. **[Define standards](/scorecards/overview)** - Create scorecards that encode your quality requirements.
109+
110+
As you build your catalog, you're simultaneously building your Context Lake—the unified knowledge layer that powers intelligent automation and AI-driven workflows.
111+
112+
113+

docs/ai-interfaces/overview.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,14 @@ Port's AI interfaces provide intelligent assistance across your entire software
99

1010
We're committed to developing AI responsibly, maintaining high standards of data privacy and security. **[Learn more about our security & data controls →](/ai-interfaces/port-ai/security-and-data-controls)**
1111

12+
## What makes Port's AI different
13+
14+
Port's AI interfaces are powered by its [Context Lake](/ai-interfaces/context-lake) - your unified engineering knowledge layer that connects data from across your entire toolchain. Port's AI understands YOUR organization: your service ownership, deployment patterns, team structures, quality standards, and operational context.
15+
16+
This organizational intelligence enables AI to provide accurate answers about who owns what, make decisions within your governance guardrails, and take actions that align with your engineering standards.
17+
18+
**[Learn more about Context Lake →](/ai-interfaces/context-lake)**
19+
1220
## Port's AI Offerings
1321

1422
:::info Closed Beta

docs/build-your-software-catalog/sync-data-to-catalog/cloud-providers/aws-v3/Overview.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ We're actively working on adding support for additional AWS resource types to pr
3535

3636
## Key advantages
3737

38-
AWS Hosted by Port provides several advantages over the [self-hosted AWS integration](/build-your-software-catalog/sync-data-to-catalog/cloud-providers/aws/installations/installation.md):
38+
AWS Hosted by Port provides several advantages over the [AWS on-premise integration](/build-your-software-catalog/sync-data-to-catalog/cloud-providers/aws/installations/installation.md):
3939

4040
- **Fully hosted**: No infrastructure to maintain, update, or monitor.
4141
- **Simplified installation**: Just deploy CloudFormation templates to create IAM roles.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
2-
"label": "AWS",
2+
"label": "AWS on-premise",
33
"position": 11
44
}

docs/build-your-software-catalog/sync-data-to-catalog/cloud-providers/aws/aws.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ import TabItem from "@theme/TabItem";
77
import Image from "@theme/IdealImage";
88
import MetricsAndSyncStatus from "/docs/build-your-software-catalog/sync-data-to-catalog/templates/_metrics_and_sync_status.mdx"
99

10-
# AWS
10+
# AWS on-premise
1111

12-
Port's AWS integration allows you to import your AWS resources into Port, according to your configuration.
12+
Port's AWS on-premise integration allows you to import your AWS resources into Port, according to your configuration.
1313
After the initial import of data, the integration will also listen to live events from AWS to update data in Port in real time.
1414

1515
The integration with AWS supports real-time event processing, which allows for an accurate **real-time** representation of your AWS infrastructure inside Port.
@@ -18,7 +18,7 @@ The integration with AWS supports real-time event processing, which allows for a
1818
Port's AWS integration is open source, view the source code [**here**](https://github.com/port-labs/ocean/tree/main/integrations/aws).
1919
:::
2020

21-
## 💡 AWS integration common use cases
21+
## 💡 AWS on-premise integration common use cases
2222

2323
Easily fill your software catalog with data directly from your AWS Organization, for example:
2424

@@ -34,7 +34,7 @@ The AWS integration allows you to perform extract, transform, load (ETL) on data
3434

3535
## Getting started
3636

37-
Continue to the [installation](./installations/installation.md) guide to learn how to install the AWS integration.
37+
Continue to the [installation](./installations/installation.md) guide to learn how to install the AWS on-premise integration.
3838

3939
## Multiple accounts support
4040

@@ -48,7 +48,7 @@ The mapping makes use of the [JQ JSON processor](https://stedolan.github.io/jq/m
4848

4949
### Default mapping configuration
5050

51-
This is the default mapping configuration you get after installing the AWS integration.
51+
This is the default mapping configuration you get after installing the AWS on-premise integration.
5252

5353
<details>
5454
<summary><b>Default mapping configuration (Click to expand)</b></summary>

docs/build-your-software-catalog/sync-data-to-catalog/cloud-providers/aws/installations/installation.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import IntegrationVersion from "/src/components/IntegrationVersion/IntegrationVe
1111
## Permissions
1212

1313
- To get Port API credentials, you check out the [Port API documentation](/build-your-software-catalog/custom-integration/api/#find-your-port-credentials).
14-
- In order to successfully deploy the AWS integration, it's crucial to ensure that the user who deploys the integration in the AWS Organization has the appropriate access permissions to create all of the relevant resources (ECS, IAM, and VPC).
14+
- In order to successfully deploy the AWS on-premise integration, it's crucial to ensure that the user who deploys the integration in the AWS Organization has the appropriate access permissions to create all of the relevant resources (ECS, IAM, and VPC).
1515

1616
:::tip Multiple Account Support
1717
To do the following:
@@ -29,7 +29,7 @@ Choose one of the following installation methods:
2929

3030
<IntegrationVersion integration="aws" />
3131

32-
The AWS integration is deployed using Helm on you cluster.
32+
The AWS on-premise integration is deployed using Helm on you cluster.
3333
You can check out the Helm chart [here](https://github.com/port-labs/helm-charts/tree/main/charts/port-ocean).
3434

3535
## Prerequisites

docs/build-your-software-catalog/sync-data-to-catalog/cloud-providers/aws/installations/multi_account.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import CenterRoundedImage from "/src/components/CenterRoundedImage/index.jsx";
66

77
# Multi account support
88

9-
This guide will provide you with the necessary tools for enabling our Ocean AWS Integration to digest multiple account's data.
9+
This guide will provide you with the necessary tools for enabling our Ocean AWS on-premise Integration to digest multiple account's data.
1010

1111
## Prerequisites
1212

0 commit comments

Comments
 (0)