Skip to content

Commit 2624d70

Browse files
Merge branch 'main' into feat-adding-hyphen-ai-to-ecosystem
2 parents b9f0cb5 + 8568ee8 commit 2624d70

File tree

14 files changed

+103
-2
lines changed

14 files changed

+103
-2
lines changed

LICENSE-CODE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@
186186
same "printed page" as the copyright notice for easier
187187
identification within third-party archives.
188188

189-
Copyright [yyyy] [name of copyright owner]
189+
Copyright OpenFeature Maintainers
190190

191191
Licensed under the Apache License, Version 2.0 (the "License");
192192
you may not use this file except in compliance with the License.
Lines changed: 60 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
1+
---
2+
title: "KubeCon NA 2025 Recap and New CNCF Training"
3+
description: "KubeCon NA 2025 Recap... and a Special Announcement!"
4+
date: 2025-11-18
5+
categories: ["OpenFeature", "KubeCon", "Feature Flags", "CloudNative", "Training", "LFS140"]
6+
slug: "kubecon-na-2025-recap"
7+
authors: ["toddbaert"]
8+
image: /img/blog/2025-11-18-kubecon-na-recap-and-new-cncf-training/sign.jpg
9+
---
10+
11+
# KubeCon NA 2025 Recap and New CNCF Training
12+
13+
What an incredible week!
14+
KubeCon North America 2025 has officially finished up, and we're still reflecting on all the energy, conversations, and sessions.
15+
If you couldn't make it, don't worry, we've got you covered with all the highlights as well as some exciting news...
16+
17+
<!-- truncate -->
18+
19+
<img src={require('@site/static/img/blog/2025-11-18-kubecon-na-recap-and-new-cncf-training/sign.jpg').default} />
20+
21+
## A Successful Summit
22+
23+
First off, a huge thank you to everyone who joined us at the OpenFeature Summit.
24+
It was great to see a room full of users and contributors to the project.
25+
We loved seeing so many of you there, asking thoughtful questions, and sharing your own experiences with feature flagging.
26+
Thanks again to our summit sponsor, [LaunchDarkly](https://launchdarkly.com/)!
27+
28+
Check out the [summit summary page](https://colocatedeventsna2025.sched.com/overview/type/OpenFeature+Summit) for recordings and slide presentations.
29+
30+
<img src={require('@site/static/img/blog/2025-11-18-kubecon-na-recap-and-new-cncf-training/session.jpg').default} />
31+
32+
## Feature Flag Talks
33+
34+
We also hosted two incredible talks that were all about feature flags and OpenFeature.
35+
Both sessions were well-attended, and questions and conversations kept going long after the talks ended.
36+
It's clear that feature flagging is a hot topic, and we're thrilled to see so much interest in the space.
37+
38+
🔥 [Feature Flags Suck! - The Problems With Feature Flagging and How To Avoid Them](https://kccncna2025.sched.com/event/27FdI/feature-flags-suck-the-problems-with-feature-flagging-and-how-to-avoid-them-pete-hodgson-ph1)
39+
40+
📈 [Feature Flag Driven Development: Seamlessly Integrate Feature Flags Into Your SDLC](https://kccncna2025.sched.com/event/27FfH/feature-flag-driven-development-seamlessly-integrate-feature-flags-into-your-sdlc-kris-coleman-testifysec-michael-beemer-dynatrace)
41+
42+
<img src={require('@site/static/img/blog/2025-11-18-kubecon-na-recap-and-new-cncf-training/talking.jpg').default} />
43+
44+
## New CNCF Training Course: Feature Flagging with OpenFeature
45+
46+
<p align="center">
47+
<img src={require('@site/static/img/blog/2025-11-18-kubecon-na-recap-and-new-cncf-training/lfs140.png').default} />
48+
</p>
49+
50+
We're happy to announce the launch of our official CNCF training course: [Feature Flagging with OpenFeature (LFS140)](https://training.linuxfoundation.org/training/feature-flagging-with-openfeature-lfs140/).
51+
This course is perfect for developers and platform engineers who want to learn how to integrate feature flags into their workflows or enhance their apps and platforms with OpenFeature.
52+
It covers everything from the basics of feature flagging to advanced use cases, and it's a great way to level up your skills.
53+
Check it out!
54+
55+
<img src={require('@site/static/img/blog/2025-11-18-kubecon-na-recap-and-new-cncf-training/booth.jpg').default} />
56+
57+
As always, we were excited to hear about new adopters, stories, and usage of the OpenFeature project at the booth.
58+
Thanks again to everyone who made KubeCon NA 2025 such an unforgettable experience.
59+
Whether you joined us in person or follow along online, we're so grateful for your support.
60+
Here's to continuing the conversation and building the future of feature flagging together!

docusaurus.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ const themeConfig: ThemeCommonConfig & AlgoliaThemeConfig = {
9696
announcementBar: {
9797
id: 'announcing-kubecon-na-25',
9898
content:
99-
'🎉️ Meet us in Atlanta for <a href="/blog/kubecon-na-2025-openfeature-summit-preview">KubeCon + CloudNativeCon North America!</a>',
99+
'Check out our <a href="/blog/kubecon-na-2025-recap">KubeCon NA \'25 recap, and our new training course!</a>',
100100
},
101101
footer: {
102102
style: 'dark',

src/datasets/providers/index.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ import { Kameleoon } from './kameleoon';
1717
import { LaunchDarkly } from './launchdarkly';
1818
import { MDBRules } from './mdb-rules';
1919
import { PostHog } from './posthog';
20+
import { Prefab } from './prefab';
2021
import { Reflag } from './reflag';
2122
import { Split } from './split';
2223
import { Unleash } from './unleash';
@@ -70,6 +71,7 @@ export const PROVIDERS: Provider[] = [
7071
LaunchDarkly,
7172
MDBRules,
7273
PostHog,
74+
Prefab,
7375
Reflag,
7476
Split,
7577
Statsig,

src/datasets/providers/prefab.ts

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
import PrefabSvg from '@site/static/img/prefab-no-fill.svg';
2+
import { Provider } from '.';
3+
4+
export const Prefab: Provider = {
5+
name: 'Prefab',
6+
logo: PrefabSvg,
7+
technologies: [
8+
{
9+
technology: 'Go',
10+
vendorOfficial: false,
11+
href: 'https://github.com/open-feature/go-sdk-contrib/tree/main/providers/prefab',
12+
category: ['Server'],
13+
},
14+
],
15+
};
16+

src/datasets/providers/split.ts

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,5 +41,17 @@ export const Split: Provider = {
4141
href: 'https://github.com/open-feature/php-sdk-contrib/tree/main/providers/Split',
4242
category: ['Server'],
4343
},
44+
{
45+
technology: 'Swift',
46+
vendorOfficial: true,
47+
href: 'https://github.com/splitio/split-openfeature-provider-swift',
48+
category: ['Client'],
49+
},
50+
{
51+
technology: 'Kotlin',
52+
vendorOfficial: true,
53+
href: 'https://github.com/splitio/split-openfeature-provider-android',
54+
category: ['Client'],
55+
},
4456
],
4557
};

src/datasets/support/commercial-support.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ import KameleoonSvg from '@site/static/img/vendors/kameleoon.svg';
44
import DevCycleSvg from '@site/static/img/vendors/devcycle.svg';
55
import FliptSvg from '@site/static/img/vendors/flipt.svg';
66
import FlagsmithSvg from '@site/static/img/vendors/flagsmith.svg';
7+
import HarnessSvg from '@site/static/img/vendors/harness.svg';
78
import LaunchDarklySvg from '@site/static/img/vendors/launchdarkly.svg';
89
import TgglSvg from '@site/static/img/vendors/tggl.svg';
910
import GoffSvg from '@site/static/img/vendors/gofeatureflag.svg';
@@ -51,6 +52,11 @@ export const CommercialSupportList: CommercialSupportType[] = [
5152
href: 'https://gofeatureflag.org/docs/openfeature_sdk/sdk',
5253
svg: GoffSvg,
5354
},
55+
{
56+
name: 'Harness Feature Management & Experimentation',
57+
href: 'https://developer.harness.io/docs/feature-management-experimentation/sdks-and-infrastructure/openfeature',
58+
svg: HarnessSvg,
59+
},
5460
{
5561
name: 'Kameleoon',
5662
href: 'https://developers.kameleoon.com/feature-management-and-experimentation/open-feature-providers/',
1.56 MB
Loading
11.5 KB
Loading
111 KB
Loading

0 commit comments

Comments
 (0)