Skip to content

Commit 37e12b2

Browse files
authored
Merge branch 'master' into M-DEV-1/replace-images-on-colors-page
2 parents d534efc + 1bd9622 commit 37e12b2

23 files changed

Lines changed: 1841 additions & 6 deletions

File tree

Lines changed: 1 addition & 0 deletions
Loading
Lines changed: 1 addition & 0 deletions
Loading
Lines changed: 1 addition & 0 deletions
Loading
Lines changed: 1 addition & 0 deletions
Loading
Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
---
2+
title: Azure Entra
3+
subtitle: Collaborative and visual infrastructure as design for Azure Entra
4+
integrationIcon: icons/color/azure-entra-color.svg
5+
darkModeIntegrationIcon: icons/white/azure-entra-white.svg
6+
docURL: https://docs.meshery.io/extensibility/integrations/azure-entra
7+
description:
8+
category: Cloud Native Network
9+
subcategory: Security Identity Compliance
10+
registrant: GitHub
11+
components: [
12+
{
13+
"name": "security-group",
14+
"colorIcon": "icons/components/security-group/icons/color/security-group-color.svg",
15+
"whiteIcon": "icons/components/security-group/icons/white/security-group-white.svg",
16+
"description": "",
17+
},
18+
{
19+
"name": "security-group",
20+
"colorIcon": "icons/components/security-group/icons/color/security-group-color.svg",
21+
"whiteIcon": "icons/components/security-group/icons/white/security-group-white.svg",
22+
"description": "",
23+
}]
24+
featureList: [
25+
"Drag-n-drop cloud native infrastructure designer to configure, model, and deploy your workloads.",
26+
"Invite anyone to review and make changes to your private designs.",
27+
"Ongoing synchronization of Kubernetes configuration and changes across any number of clusters."
28+
]
29+
workingSlides: [
30+
../_images/kanvas-visualizer.png,
31+
../_images/kanvas-designer.png
32+
]
33+
howItWorks: "Collaborative Infrastructure as Design"
34+
howItWorksDetails: "Collaboratively manage infrastructure with your coworkers synchronously sharing the same designs."
35+
published: TRUE
36+
---
37+
<p>
38+
Serves as a NoSQL document database for fast and flexible app development.
39+
</p>
40+
<p>
41+
Collaboratively and visually diagram your cloud native infrastructure with GitOps-style pipeline integration. Design, test, and manage configuration your Kubernetes-based, containerized applications as a visual topology.
42+
</p>
43+
<p>
44+
Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in Kanvas. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, Kanvas, to create and deploy your own cloud native infrastructure designs.
45+
</p>

src/collections/news/2022/2022-05-18-meshmark-the-cloud-native-value-measurement/meshmark-the-cloud-native-value-measurement.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ thumbnail: ../../../../assets/images/meshmark/stacked/meshmark-dark-full.webp
77
darkthumbnail: ../../../../assets/images/meshmark/stacked/meshmark-dark-full.webp
88
category: "Press Release"
99
presskit: "/press/kits/MeshMark-press-kit.zip"
10-
description: "Layer5, a provider of cloud native management software, announced today the general availability of the Meshery Docker Extension. Complementing Docker Desktop's role as the go-to Kubernetes environment for cloud native developers, the Meshery Docker Extension provides easy access to the next layer of cloud native infrastructure: service meshes. As an inaugural Docker Extensions Partner and a maker of industry-defining, cloud native software, Layer5’s integration of Meshery provides a visual pathway for existing Docker Compose applications to move into Kubernetes and onto any service mesh."
10+
description: "Layer5, a provider of cloud native management software, announced today the general availability of the Meshery Docker Extension. Complementing Docker Desktop's role as the go-to Kubernetes environment for cloud native developers, the Meshery Docker Extension provides easy access to the next layer of cloud native infrastructure. As an inaugural Docker Extensions Partner and a maker of industry-defining, cloud native software, Layer5’s integration of Meshery provides a visual pathway for existing Docker Compose applications to move into Kubernetes and onto any Cloud."
1111
tags:
1212
- Announcements
1313
- Meshery

src/components/Related-Posts/index.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,8 @@ const RelatedPosts = props => {
2929
slidesToScroll= {1}
3030
>
3131
{
32-
postType === "blogs" ? relatedPosts.map(({ post }) => {
32+
postType === "blogs" ? relatedPosts.map((item) => {
33+
const post = item.post || item;
3334
return (
3435
<Col className="cardCol" $xs={12} key={post.fields.slug}>
3536
<Card frontmatter={post.frontmatter} fields={post.fields}/>
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
import React from "react";
2+
3+
import SEO from "../../../components/seo";
4+
import PlatformEngineeringSolutionPage from "../../../sections/Platform-Engineering";
5+
6+
7+
const PlatformEngineeringSolutions = () => {
8+
return (
9+
<>
10+
<PlatformEngineeringSolutionPage />
11+
</>
12+
);
13+
};
14+
export default PlatformEngineeringSolutions;
15+
export const Head = () => {
16+
return <SEO title="Platform Engineering"
17+
description="Empower Your Teams with Platform Engineering. Streamline development, enhance collaboration, and accelerate innovation in cloud-native environments."
18+
image="/images/solutions-devrel.png" />;
19+
};

src/reusecore/PageHeader/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ const PageHeader = ({ category, title, img, feedlink, subtitle, author, thumbnai
4545
return (
4646
<PageHeaderWrapper>
4747
<div className="page-header">
48-
{ thumbnail && <div className="feature-image" style={{ aspectRatio: "16/9", minHeight: "250px" }}>
48+
{ thumbnail && <div className="feature-image" style={{ minHeight: "250px" }}>
4949
<Image {...thumbnail} imgStyle={{ objectFit: "contain" }} alt={title}/>
5050
</div>}
5151
<h1 className="page-title" >{title} <sup className="supscript">{superscript}</sup>{ img && feedlink && (<a href= {feedlink} target="_blank" rel="noreferrer"> <img src={img} alt="RSS Feed"/> </a>) } </h1>

src/sections/General/Navigation/utility/menu-items.js

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,11 @@ const Data = {
3737
path: "/solutions/devrel-platform-for-kubernetes-and-cloud-native-content",
3838
sepLine: true,
3939
},
40+
{
41+
name: "Platform Engineering",
42+
path: "/solutions/platform-engineering",
43+
sepLine: true,
44+
},
4045
],
4146
actionItems: [
4247
{

0 commit comments

Comments
 (0)