Skip to content

Commit 51c3887

Browse files
Merge branch 'layer5io:master' into master
2 parents fa24fcb + 1c61800 commit 51c3887

27 files changed

Lines changed: 1656 additions & 120 deletions

File tree

package-lock.json

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
"@mui/icons-material": "^6.4.6",
4343
"@mui/material": "^5.15.11",
4444
"@react-icons/all-files": "^4.1.0",
45-
"@sistent/sistent": "^0.15.9",
45+
"@sistent/sistent": "^0.15.11",
4646
"@svgr/webpack": "^8.0.1",
4747
"@types/mui-datatables": "^4.3.12",
4848
"ajv": "^8.17.1",

src/collections/events/2025/kubecon-na-2025/index.mdx

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,25 @@ Meshery, an open-source cloud-native manager, addresses this by leveraging human
3838
<Button $secondary title="See Details" $url="https://kccncna2025.sched.com/event/27d5F/project-lightning-talk-beyond-yaml-visualising-kubernetes-ontologies-with-meshery-yash-sharma-maintainer?iframe=no&w=100%&sidebar=yes&bg=no" $external={ true } />
3939
</div>
4040

41+
### Session: "Do You Even Merge?" - Welcome To Maintainers Life, Please Bring Snacks and Boundaries
42+
43+
<p>
44+
Open Source maintainers are often seen as gatekeepers of progress, expected to fix bugs, review PRs, design features, answer questions, and keep the community happy. But behind that façade is often an unexpected reality, especially in high-velocity CNCF projects.
45+
46+
In this talk, we will share what it’s like to maintain a CNCF Graduated project, not just the technical side, but the human side: how we keep the project growing, prioritize responsibly, and how governance structures like SIGs help scale responsibilities. You’ll hear stories, lessons, and hard truths that rarely make it into blog posts.
47+
48+
The more successful a project becomes, the harder it gets to sustain, and that’s something we don’t acknowledge enough. If you’ve ever wondered why your issue didn’t get a response, why a feature was declined, or what “being supportive” really looks like in open source, this talk will help you understand the maintainer’s side and maybe rethink your own role in the ecosystem to support them.
49+
</p>
50+
51+
<div class="flex-row" style="margin-bottom: 2rem;">
52+
<p>
53+
Date: November 12, 2025<br />
54+
Time: 11:00am - 11:30am EST
55+
</p>
56+
57+
<Button $secondary title="See Details" $url="https://kccncna2025.sched.com/event/27FYt" $external={ true } />
58+
</div>
59+
4160
### Session: 🚨 Contribfest: Meshery Contribfest: Dive Deep Into Extending Cloud Native Management
4261

4362
<p>
Lines changed: 1 addition & 0 deletions
Loading
Lines changed: 1 addition & 0 deletions
Loading

src/collections/integrations/aws-sagemaker-controller/index.mdx

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -164,6 +164,12 @@ components: [
164164
"colorIcon": "icons/components/labeling-job/icons/color/labeling-job-color.svg",
165165
"whiteIcon": "icons/components/labeling-job/icons/white/labeling-job-white.svg",
166166
"description": "",
167+
},
168+
{
169+
"name": "space",
170+
"colorIcon": "icons/components/space/icons/color/space-color.svg",
171+
"whiteIcon": "icons/components/space/icons/white/space-white.svg",
172+
"description": "",
167173
}]
168174
featureList: [
169175
"Choice of ML tools",
39 KB
Loading
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
---
2+
name: Kavya Katal
3+
position: Contributor
4+
github: KatalKavya96
5+
twitter: Katal09
6+
linkedin: kavya-katal-64260a318
7+
layer5: 985074f5-27a0-406c-b83a-7f247ba77746
8+
location: Faridabad, Haryana, India
9+
bio: Hi, I am Kavya Katal, a passionate Full Stack Developer and AI enthusiast exploring the intersection of Open Source, Cloud Native, and Web Technologies. I enjoy contributing to developer communities, building scalable solutions, and continuously learning to create impactful, innovative systems.
10+
published: true
11+
badges:
12+
- Community
13+
image_path: ./KatalKavya96.png
14+
status: Active
15+
---

src/components/Pricing/PlanCard/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ const PlanCard = ({ planData, isYearly, currency }) => {
5757
: formatPrice(x.monthlyprice)}
5858
</span>
5959
<span className="currency">{Currencies[currency]?.name ?? "USD"}</span>
60-
<span className="price-per">per user/year</span>
60+
<span className="price-per">per user /{isYearly ? "year" : "month"}</span>
6161
</div>
6262

6363
</div>

src/components/Pricing/PricingAddons/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -350,7 +350,7 @@ export const PricingAddons = ({ isYearly = false, setIsYearly, currency, enterpr
350350
const totalPrice = pricePerUser * option.learners * multiplier;
351351
const period = isYearly ? "/year" : "/month";
352352
return `${option.learners} learners - ${formatPrice(totalPrice)}${period}`;
353-
}
353+
}
354354
return "";
355355
}}
356356
max={(() => {
@@ -574,4 +574,4 @@ export const PricingAddons = ({ isYearly = false, setIsYearly, currency, enterpr
574574
</CssBaseline>
575575
</SistentThemeProvider>
576576
);
577-
};
577+
};

0 commit comments

Comments
 (0)