Skip to content

Commit bc5d1cd

Browse files
kavishkafernandoKavishka Fernando
andauthored
Add external articles (#703)
* fix google site link issue Signed-off-by: Kavishka Fernando <kavi@kavishka.local> * fix google site link issue Signed-off-by: Kavishka Fernando <kavi@kavishka.local> * revert quote formatting changes Signed-off-by: Kavishka Fernando <kavi@kavishka.local> * fix dark mode text colour Signed-off-by: Kavishka Fernando <kavi@kavishka.local> * add external articles Signed-off-by: Kavishka Fernando <kavi@kavishka.local> --------- Signed-off-by: Kavishka Fernando <kavi@kavishka.local> Co-authored-by: Kavishka Fernando <kavi@kavishka.local>
1 parent d015954 commit bc5d1cd

3 files changed

Lines changed: 29 additions & 4 deletions

File tree

39.4 KB
Loading
934 KB
Loading

src/data/externalArticles.ts

Lines changed: 29 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
import infoqPreview from '@site/blog/assets/previews/infoq-article-2026.png';
22
import brightbasePreview from '@site/blog/assets/previews/brightbase-article-2026.png';
33
import article163Preview from '@site/blog/assets/previews/163-article-2026.png';
4+
import condeintechnologyPreview from '@site/blog/assets/previews/codeintechnology-article-2026.jpg';
5+
import bestidpitnextPreview from '@site/blog/assets/previews/bestidp-itnext-article-2026.webp';
46

57
export interface ExternalArticle {
68
title: string;
@@ -14,10 +16,11 @@ export interface ExternalArticle {
1416

1517
const externalArticles: ExternalArticle[] = [
1618
{
17-
title: 'OpenChoreo 1.0 Brings AI Agents and GitOps to Kubernetes Developer Platforms',
19+
title:
20+
'OpenChoreo 1.0 Brings AI Agents and GitOps to Kubernetes Developer Platforms',
1821
url: 'https://www.infoq.com/news/2026/04/openchoreo-10/',
1922
description:
20-
'OpenChoreo, the open-source internal developer platform built on Kubernetes, has shipped its 1.0 release and been accepted into the CNCF Sandbox. The project originated as the open-source counterpart to WSO2\'s commercial Choreo SaaS platform.',
23+
"OpenChoreo, the open-source internal developer platform built on Kubernetes, has shipped its 1.0 release and been accepted into the CNCF Sandbox. The project originated as the open-source counterpart to WSO2's commercial Choreo SaaS platform.",
2124
date: '2026-04-10',
2225
category: 'community',
2326
source: 'InfoQ',
@@ -34,15 +37,37 @@ const externalArticles: ExternalArticle[] = [
3437
image: brightbasePreview,
3538
},
3639
{
37-
title: 'OpenChoreo 1.0 Released: Integrating AI Agents into the Kubernetes Development Layer (Translated)',
40+
title:
41+
'OpenChoreo 1.0 Released: Integrating AI Agents into the Kubernetes Development Layer (Translated)',
3842
url: 'https://www.163.com/dy/article/KRK6EB0T05561FZR.html',
3943
description:
40-
'A group of engineers spent three years breaking down the core capabilities of an enterprise-grade internal developer platform into open-source components. Now they\'ve officially delivered.',
44+
"A group of engineers spent three years breaking down the core capabilities of an enterprise-grade internal developer platform into open-source components. Now they've officially delivered.",
4145
date: '2026-04-28',
4246
category: 'community',
4347
source: '163.com',
4448
image: article163Preview,
4549
},
50+
{
51+
title:
52+
'OpenChoreo 1.0: A CNCF-Accepted Kubernetes IDP with Native AI Agent Support and GitOps',
53+
url: 'https://www.codeintechnology.com/blog/openchoreo-1-0-kubernetes-idp-ai-agents-gitops-cncf',
54+
description:
55+
'OpenChoreo 1.0 is a CNCF Sandbox-accepted, open-source Kubernetes internal developer platform that brings native AI agent support via MCP servers, a built-in SRE agent, and GitOps through FluxCD — giving engineering teams a production-ready foundation without assembling the toolchain themselves.',
56+
date: '2026-04-29',
57+
category: 'community',
58+
source: 'codeintechnology.com',
59+
image: condeintechnologyPreview,
60+
},
61+
{
62+
title: 'The Best Internal Developer Platform Might Be the One Nobody Opens',
63+
url: 'https://itnext.io/the-best-developer-platform-might-be-the-one-nobody-opens-7c55d322f348',
64+
description:
65+
'As AI agents increasingly become the primary interface for interacting with developer platforms, the best internal developer platform is one that stays invisible to developers but must still be built with the same rigor around self-service, governance, and continuous improvement.',
66+
date: '2026-06-09',
67+
category: 'community',
68+
source: 'itnext.io',
69+
image: bestidpitnextPreview,
70+
},
4671
];
4772

4873
export default externalArticles;

0 commit comments

Comments
 (0)