Skip to content

Commit 37837d4

Browse files
authored
Merge branch 'master' into blog/meet-the-maintainer-aabid-sofi
2 parents 2eb5c23 + ba74152 commit 37837d4

32 files changed

Lines changed: 2037 additions & 973 deletions

File tree

gatsby-config.js

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,8 @@ module.exports = {
1313
},
1414
flags: {
1515
FAST_DEV: true,
16-
PARALLEL_SOURCING: true,
16+
PARALLEL_SOURCING: false, // Disable parallel sourcing to reduce memory pressure
17+
DEV_SSR: false, // Disable SSR to avoid build issues
1718
},
1819
trailingSlash: "never",
1920
plugins: [
@@ -473,6 +474,11 @@ module.exports = {
473474
resolve: "gatsby-plugin-mdx",
474475
options: {
475476
extensions: [".mdx", ".md"],
477+
mdxOptions: {
478+
remarkPlugins: [],
479+
rehypePlugins: [],
480+
},
481+
gatsbyRemarkPlugins: [],
476482
},
477483
},
478484
{
@@ -631,4 +637,4 @@ module.exports = {
631637
"gatsby-plugin-meta-redirect",
632638
// make sure this is always the last one
633639
],
634-
};
640+
};

package-lock.json

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

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"scripts": {
1313
"build": "gatsby build",
1414
"clean": "gatsby clean && rimraf node_modules",
15-
"develop": "env-cmd -f .env.development gatsby develop",
15+
"develop": "GATSBY_CPU_COUNT=12 NODE_OPTIONS=--max-old-space-size=10096 gatsby develop",
1616
"dev": "npm run develop",
1717
"start": "npm run develop",
1818
"serve": "gatsby serve",
@@ -55,7 +55,7 @@
5555
"dedent": "^1.3.0",
5656
"deepmerge": "^4.3.0",
5757
"formik": "^2.2.9",
58-
"gatsby": "^5.14.0",
58+
"gatsby": "^5.14.6",
5959
"gatsby-awesome-pagination": "^0.3.8",
6060
"gatsby-background-image": "^1.6.0",
6161
"gatsby-cli": "^5.13.3",
Lines changed: 56 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
1+
---
2+
title: "KubeCon + CloudNativeCon, North America 2025"
3+
description: "Kubernetes Ontologies and Multiplayer GitOps with Meshery"
4+
date: 2025-11-10
5+
thumbnail: ./kubeconna-2025.png
6+
darkthumbnail: ./kubeconna-2025.png
7+
8+
type: Event
9+
published: true
10+
upcoming: true
11+
feature: true
12+
speakers: ["Yash Sharma", "Lee Calcote"]
13+
14+
---
15+
import Button from "../../../../reusecore/Button";
16+
17+
Join Meshery at KubeCon + CloudNativeCon North America 2025, Atlanta, US!
18+
19+
20+
<p>
21+
Join the Meshery project at KubeCon + CloudNativeCon NA 2025 from November 10th to November 13th, 2025 and get introduced to collaborative cloud native management and Meshery open source maintainers.
22+
</p>
23+
24+
### Session: Project Lightning Talk: Beyond YAML: Visualising Kubernetes Ontologies With Meshery
25+
26+
<p>
27+
Kubernetes landscape is expansive yet intricate, requiring engineers to navigate sophisticated configurations spanning numerous components and custom resources. This intricacy can become daunting, particularly when dealing with repetitive configuration management duties such as handling YAML files, network setups, and RBAC policies.
28+
29+
Meshery, an open-source cloud-native manager, addresses this by leveraging human-computer interaction principles to simplify Kubernetes. Through Kanvas, an intuitive visual interface, Meshery reduces cognitive load, aligns with users mental models, and streamlines infrastructure design backed by OPA policies. Join this lighting talk to see how Meshery makes Kubernetes more accessible, empowering you to visualize and manage complex relationships across CNCF projects with ease and precision.
30+
</p>
31+
32+
<div class="flex-row" style="margin-bottom: 2rem;">
33+
<p>
34+
Date: November 10, 2025<br />
35+
Time: 1:52am - 1:57pm EST
36+
</p>
37+
38+
<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 } />
39+
</div>
40+
41+
### Session: 🚨 Contribfest: Meshery Contribfest: Dive Deep Into Extending Cloud Native Management
42+
43+
<p>
44+
Join us for an in-depth session on Meshery a leading cloud native management plane with Meshery maintainers and community. This is your chance to get hands-on with the tools shaping the future of collaborative cloud native management. We will walk through the Contributing Guide to help you familiarize yourself with the project and the contribution process with opportunities to work on core functionality in the Server (Golang) or UI (React) or extend Meshery by building your own plugin.
45+
46+
Contribute to the documentation by incorporating your own examples of cloud native architectures using Meshery Designer. You will gain experience with cloud native technologies, including essentially every CNCF project and open source development practices. This session will be led by Meshery maintainers and contributors. No Prior Experience Needed: We welcome contributions from all levels of experience. Join us at Meshery Contribfest and be part of the future of collaborative cloud native management.
47+
</p>
48+
49+
<div class="flex-row" style="margin-bottom: 2rem;">
50+
<p>
51+
Date: November 13th, 2025 <br />
52+
Time: 1:45pm - 3:00pm EST
53+
</p>
54+
55+
<Button $secondary title="See Details" $url="https://kccncna2025.sched.com/event/27NlC/contribfest-meshery-contribfest-dive-deep-into-extending-cloud-native-management-yash-sharma-digitalocean-lee-calcote-layer5?iframe=yes&w=100%&sidebar=yes&bg=no" $external={ true } />
56+
</div>
455 KB
Loading
Lines changed: 1 addition & 0 deletions
Loading
Lines changed: 1 addition & 0 deletions
Loading

src/collections/integrations/flux/index.mdx

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,12 @@ components: [
3838
"colorIcon": "icons/components/oci-repository/icons/color/oci-repository-color.svg",
3939
"whiteIcon": "icons/components/oci-repository/icons/white/oci-repository-white.svg",
4040
"description": "",
41+
},
42+
{
43+
"name": "external-artifact",
44+
"colorIcon": "icons/components/external-artifact/icons/color/external-artifact-color.svg",
45+
"whiteIcon": "icons/components/external-artifact/icons/white/external-artifact-white.svg",
46+
"description": "",
4147
}]
4248
featureList: [
4349
"Synchronizes Kubernetes state with Git",
Lines changed: 5 additions & 0 deletions
Loading

0 commit comments

Comments
 (0)