diff --git a/.desktop-lighthouserc.js b/.desktop-lighthouserc.js index 5ddb404fa313..6e6304566de2 100644 --- a/.desktop-lighthouserc.js +++ b/.desktop-lighthouserc.js @@ -10,7 +10,7 @@ module.exports = { "http://localhost/?desktop", "http://localhost/company/about/index.html?desktop", "http://localhost/cloud-native-management/meshery/index.html?desktop", - "http://localhost/cloud-native-management/meshmap/index.html?desktop", + "http://localhost/cloud-native-management/kanvas/index.html?desktop", "http://localhost/learn/learning-paths/index.html?desktop", "http://localhost/learn/service-mesh-books/index.html?desktop", "http://localhost/learn/service-mesh-workshops/index.html?desktop", diff --git a/.github/labeler.yml b/.github/labeler.yml index 080e048af5dd..49da5263a5b2 100644 --- a/.github/labeler.yml +++ b/.github/labeler.yml @@ -93,7 +93,7 @@ project/meshery: - changed-files: - any-glob-to-any-file: - "src/collections/integrations/**/*" -project/meshmap: +project/kanvas: - changed-files: - any-glob-to-any-file: - - "src/sections/Meshmap/**/*" + - "src/sections/Kanvas/**/*" diff --git a/.github/workflows/meshmap.yml b/.github/workflows/meshmap.yml index a39642227960..f1c83b0278ee 100644 --- a/.github/workflows/meshmap.yml +++ b/.github/workflows/meshmap.yml @@ -1,4 +1,4 @@ -name: MeshMap Screenshot Service +name: Kanvas Screenshot Service 'on': pull_request_target: types: @@ -14,7 +14,7 @@ name: MeshMap Screenshot Service outputs: resource_url: description: The URL of the generated resource. - value: ${{ jobs.MeshMapScreenshot.outputs.resource_url }} + value: ${{ jobs.KanvasScreenshot.outputs.resource_url }} permissions: actions: read contents: write @@ -23,7 +23,7 @@ permissions: pull-requests: write id-token: write jobs: - MeshMapScreenshot: + KanvasScreenshot: runs-on: ubuntu-latest outputs: resource_url: ${{ steps.test_result.outputs.resource_url }} @@ -36,9 +36,9 @@ jobs: - uses: actions/checkout@v4 with: path: action - repository: layer5labs/meshmap-snapshot + repository: layer5labs/kanvas-snapshot - id: test_result - uses: layer5labs/MeshMap-Snapshot@v0.2.8 + uses: layer5labs/Kanvas-Snapshot@v0.2.8 with: githubToken: ${{ secrets.GITHUB_TOKEN }} mesheryToken: ${{ secrets.MESHERY_TOKEN }} diff --git a/.lighthouserc.js b/.lighthouserc.js index 06bc8b98b5c9..3e6067c7e302 100644 --- a/.lighthouserc.js +++ b/.lighthouserc.js @@ -8,7 +8,7 @@ module.exports = { "http://localhost", "http://localhost/company/about/index.html", "http://localhost/cloud-native-management/meshery/index.html", - "http://localhost/cloud-native-management/meshmap/index.html", + "http://localhost/cloud-native-management/kanvas/index.html", "http://localhost/learn/learning-paths/index.html", "http://localhost/learn/service-mesh-books/index.html", "http://localhost/learn/service-mesh-workshops/index.html", diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 5b54053833db..b24af2cdbd63 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -227,7 +227,7 @@ OR - SVG or image uses transparent sections that change with the background color to work with either theme. -[Example of SVG file with transparent sections](https://github.com/layer5io/layer5/blob/master/src/assets/images/meshmap/icon-only/meshmap-icon.svg) +[Example of SVG file with transparent sections](https://github.com/layer5io/layer5/blob/master/src/assets/images/kanvas/icon-only/kanvas-icon.svg) [Example of image file with transparent sections](https://github.com/layer5io/layer5/blob/master/src/assets/images/app/projects/meshery-logo-light.webp) @@ -331,7 +331,7 @@ If possible we wish to avoid using images dependent on the theme because we are 1. To change images or SVG as the image source, according to the theme, you have to import the hook `useStyledDarkMode` from the following [folder](https://github.com/layer5io/layer5/blob/master/src/theme/app/useStyledDarkMode.js), and then use the `isDark` value from `useStyledDarkMode` hook for the conditional. -For example, you can view the code for [this file](https://github.com/layer5io/layer5/blob/master/src/sections/Meshmap/Meshmap-collaborate/meshmap-collaborate-banner.js). +For example, you can view the code for [this file](https://github.com/layer5io/layer5/blob/master/src/sections/Kanvas/Kanvas-collaborate/kanvas-collaborate-banner.js). Here are the relevant parts of the code: @@ -403,7 +403,7 @@ Badges are a great way of highlighting the area of contribution by any given com - Docker Extension - Docs - Meshery Catalog -- MeshMap +- Kanvas - Landscape - ImageHub - Meshery diff --git a/README.md b/README.md index 8e502d142285..eeb5107f2714 100644 --- a/README.md +++ b/README.md @@ -39,11 +39,11 @@

-

MeshMap

- - MeshMap logo +

Kanvas

+ + Kanvas logo -MeshMap is an end-to-end management platform, here to help teams understand problems, deploy designs, apply patterns, manage and operate your deployments and services in real-time. +Kanvas is an end-to-end management platform, here to help teams understand problems, deploy designs, apply patterns, manage and operate your deployments and services in real-time.



diff --git a/gatsby-node.js b/gatsby-node.js index 76e47087e289..aaa58ee86333 100644 --- a/gatsby-node.js +++ b/gatsby-node.js @@ -284,15 +284,27 @@ exports.createPages = async ({ actions, graphql, reporter }) => { redirectInBrowser: true, isPermanent: true, }); + createRedirect({ + fromPath: "/kanvas", + toPath: "/cloud-native-management/kanvas", + redirectInBrowser: true, + isPermanent: true, + }); + createRedirect({ + fromPath: "/cloud-native-management/meshmap", + toPath: "/cloud-native-management/kanvas", + redirectInBrowser: true, + isPermanent: true, + }); createRedirect({ fromPath: "/meshmap", - toPath: "/cloud-native-management/meshmap", + toPath: "/cloud-native-management/kanvas", redirectInBrowser: true, isPermanent: true, }); createRedirect({ fromPath: "/go/meshmap", - toPath: "/cloud-native-management/meshmap", + toPath: "/cloud-native-management/kanvas", redirectInBrowser: true, isPermanent: true, }); diff --git a/src/assets/data/faq/index.js b/src/assets/data/faq/index.js index ccc5a2582884..82b304813e16 100644 --- a/src/assets/data/faq/index.js +++ b/src/assets/data/faq/index.js @@ -107,10 +107,10 @@ const data = { ], }, { - question: "Can I deploy Meshery / MeshMap on-premises?", + question: "Can I deploy Meshery / Kanvas on-premises?", category: "Meshery", answer: [ - "Yes, Meshery, MeshMap, and Layer5 Cloud can be deployed on-premises in minutes using Helm charts.", + "Yes, Meshery, Kanvas, and Layer5 Cloud can be deployed on-premises in minutes using Helm charts.", "With a small number of manual steps, air-gapped deployments to run Meshery without internet access is also supported.", ], }, @@ -125,18 +125,18 @@ const data = { question: "Is it possible to migrate from managed Layer5 Cloud to self-hosted Layer5 Cloud on-premises?", category: "Meshery", answer: [ - "Yes, Meshery, MeshMap, and Layer5 Cloud can be deployed on-premises in minutes using Helm charts.", + "Yes, Meshery, Kanvas, and Layer5 Cloud can be deployed on-premises in minutes using Helm charts.", "A one-time export of your data can be requested as you transition from managed Layer5 Cloud to self-hosted Layer5 Cloud.", "With a small number of manual steps, air-gapped deployments to run Meshery without internet access is also supported.", ], }, { - question: `What is the difference between MeshMap and the Cloud Native Playground?`, + question: `What is the difference between Kanvas and the Cloud Native Playground?`, category: "Meshery", answer: [ - "The Cloud Native Playground (aka Meshery Playground) is a managed instance of Meshery that offers a sandbox environment in which half of MeshMapBETA functionality is enabled (Designer mode) and the other half of MeshMapBETA functionality is disabled (Visualizer mode).", - "The sandbox environment is not connected to an active Kuberentes cluster, and as such, specific actions within MeshMap Designer are also disabled. Meshery and MeshMap are feature-rich, sophisticated management applications for cloud native infrastructure. To access their full set of capabilities, simply deploy your own copy of Meshery into the environment of your choosing.", + "The Cloud Native Playground (aka Meshery Playground) is a managed instance of Meshery that offers a sandbox environment in which half of KanvasBETA functionality is enabled (Designer mode) and the other half of KanvasBETA functionality is disabled (Visualizer mode).", + "The sandbox environment is not connected to an active Kuberentes cluster, and as such, specific actions within Kanvas Designer are also disabled. Meshery and Kanvas are feature-rich, sophisticated management applications for cloud native infrastructure. To access their full set of capabilities, simply deploy your own copy of Meshery into the environment of your choosing.", ], }, { @@ -181,13 +181,13 @@ const data = { ], }, { - question: "Is MeshMap cloud or a self-hosted solution?", - category: "MeshMap", - link: "https://layer5.io/cloud-native-management/meshmap", + question: "Is Kanvas cloud or a self-hosted solution?", + category: "Kanvas", + link: "https://layer5.io/cloud-native-management/kanvas", linktext: "Learn More", answer: [ - "Yes, MeshMap is available both as a hosted solution and is also deployable on-premises as a self-hosted solution.", - "MeshMap can be self-hosted to keep your designs and applications internal to your premises. You can also choose to have MeshMap hosted as SaaS solution offered by Layer5.", + "Yes, Kanvas is available both as a hosted solution and is also deployable on-premises as a self-hosted solution.", + "Kanvas can be self-hosted to keep your designs and applications internal to your premises. You can also choose to have Kanvas hosted as SaaS solution offered by Layer5.", "Whether self-hosted or hosted by Layer5, we are here to support you." ] }, @@ -201,23 +201,23 @@ const data = { ] }, { - question: "How can I try out MeshMap?", - category: "MeshMap", - link: "https://layer5.io/cloud-native-management/meshmap", - linktext: "MeshMap Beta", + question: "How can I try out Kanvas?", + category: "Kanvas", + link: "https://layer5.io/cloud-native-management/kanvas", + linktext: "Kanvas Beta", answer: [ - "MeshMap is available in beta today. Signup for MeshMap beta access and use MeshMap for free.", + "Kanvas is available in beta today. Signup for Kanvas beta access and use Kanvas for free.", "Your request for early access will be processeed as quicky as possible but due to the large influx of program participation requests, it may take some time before system access is granted. In the meantime to help you familiarize with Meshery, the maintainers team will send you additional information about the early access program." ] }, { - question: "What is MeshMap early access program?", - category: "MeshMap", - link: "https://layer5.io/cloud-native-management/meshmap", - linktext: "MeshMap Beta", + question: "What is Kanvas early access program?", + category: "Kanvas", + link: "https://layer5.io/cloud-native-management/kanvas", + linktext: "Kanvas Beta", answer: [ - "MeshMap is cloud native collaboration tool for managing your infrastructure and applications. MeshMap has two modes: Visualizer for operating your actively running Kubernetes clusters and Designer for configuring your Kubernetes clusters and creating your creating your application deployments.", - "MeshMap is in beta mode and you can ask for early access to try it out.", + "Kanvas is cloud native collaboration tool for managing your infrastructure and applications. Kanvas has two modes: Visualizer for operating your actively running Kubernetes clusters and Designer for configuring your Kubernetes clusters and creating your creating your application deployments.", + "Kanvas is in beta mode and you can ask for early access to try it out.", ] }, diff --git a/src/assets/discuss/html/footer.html b/src/assets/discuss/html/footer.html index 1dc4e2786079..cd11cd1797b4 100644 --- a/src/assets/discuss/html/footer.html +++ b/src/assets/discuss/html/footer.html @@ -59,7 +59,7 @@ + diff --git a/src/assets/images/homePage-images/meshmap.webp b/src/assets/images/homePage-images/kanvas.webp similarity index 100% rename from src/assets/images/homePage-images/meshmap.webp rename to src/assets/images/homePage-images/kanvas.webp diff --git a/src/assets/images/meshmap-snapshot/meshmap-snapshot.svg b/src/assets/images/kanvas-snapshot/kanvas-snapshot.svg similarity index 100% rename from src/assets/images/meshmap-snapshot/meshmap-snapshot.svg rename to src/assets/images/kanvas-snapshot/kanvas-snapshot.svg diff --git a/src/assets/images/meshmap/MeshmapCatalog.webp b/src/assets/images/kanvas/KanvasCatalog.webp similarity index 100% rename from src/assets/images/meshmap/MeshmapCatalog.webp rename to src/assets/images/kanvas/KanvasCatalog.webp diff --git a/src/assets/images/meshmap/MeshmapDesigner.webp b/src/assets/images/kanvas/KanvasDesigner.webp similarity index 100% rename from src/assets/images/meshmap/MeshmapDesigner.webp rename to src/assets/images/kanvas/KanvasDesigner.webp diff --git a/src/assets/images/meshmap/MeshmapVisualizer.webp b/src/assets/images/kanvas/KanvasVisualizer.webp similarity index 100% rename from src/assets/images/meshmap/MeshmapVisualizer.webp rename to src/assets/images/kanvas/KanvasVisualizer.webp diff --git a/src/assets/images/meshmap/MesheryCloud.webp b/src/assets/images/kanvas/MesheryCloud.webp similarity index 100% rename from src/assets/images/meshmap/MesheryCloud.webp rename to src/assets/images/kanvas/MesheryCloud.webp diff --git a/src/assets/images/meshmap/catalog-card-images/circuit-breaker.svg b/src/assets/images/kanvas/catalog-card-images/circuit-breaker.svg similarity index 100% rename from src/assets/images/meshmap/catalog-card-images/circuit-breaker.svg rename to src/assets/images/kanvas/catalog-card-images/circuit-breaker.svg diff --git a/src/assets/images/meshmap/catalog-card-images/correlate-event.svg b/src/assets/images/kanvas/catalog-card-images/correlate-event.svg similarity index 100% rename from src/assets/images/meshmap/catalog-card-images/correlate-event.svg rename to src/assets/images/kanvas/catalog-card-images/correlate-event.svg diff --git a/src/assets/images/meshmap/catalog-card-images/denial.svg b/src/assets/images/kanvas/catalog-card-images/denial.svg similarity index 100% rename from src/assets/images/meshmap/catalog-card-images/denial.svg rename to src/assets/images/kanvas/catalog-card-images/denial.svg diff --git a/src/assets/images/meshmap/catalog-card-images/http.svg b/src/assets/images/kanvas/catalog-card-images/http.svg similarity index 100% rename from src/assets/images/meshmap/catalog-card-images/http.svg rename to src/assets/images/kanvas/catalog-card-images/http.svg diff --git a/src/assets/images/meshmap/catalog-card-images/jwt.svg b/src/assets/images/kanvas/catalog-card-images/jwt.svg similarity index 100% rename from src/assets/images/meshmap/catalog-card-images/jwt.svg rename to src/assets/images/kanvas/catalog-card-images/jwt.svg diff --git a/src/assets/images/meshmap/catalog-card-images/multicluster.svg b/src/assets/images/kanvas/catalog-card-images/multicluster.svg similarity index 100% rename from src/assets/images/meshmap/catalog-card-images/multicluster.svg rename to src/assets/images/kanvas/catalog-card-images/multicluster.svg diff --git a/src/assets/images/meshmap/catalog-card-images/mutual-tls.svg b/src/assets/images/kanvas/catalog-card-images/mutual-tls.svg similarity index 100% rename from src/assets/images/meshmap/catalog-card-images/mutual-tls.svg rename to src/assets/images/kanvas/catalog-card-images/mutual-tls.svg diff --git a/src/assets/images/meshmap/catalog-card-images/node-agent.svg b/src/assets/images/kanvas/catalog-card-images/node-agent.svg similarity index 100% rename from src/assets/images/meshmap/catalog-card-images/node-agent.svg rename to src/assets/images/kanvas/catalog-card-images/node-agent.svg diff --git a/src/assets/images/meshmap/catalog-card-images/only-wagent.svg b/src/assets/images/kanvas/catalog-card-images/only-wagent.svg similarity index 100% rename from src/assets/images/meshmap/catalog-card-images/only-wagent.svg rename to src/assets/images/kanvas/catalog-card-images/only-wagent.svg diff --git a/src/assets/images/meshmap/catalog-card-images/pre-provision.svg b/src/assets/images/kanvas/catalog-card-images/pre-provision.svg similarity index 100% rename from src/assets/images/meshmap/catalog-card-images/pre-provision.svg rename to src/assets/images/kanvas/catalog-card-images/pre-provision.svg diff --git a/src/assets/images/meshmap/catalog-card-images/retries.svg b/src/assets/images/kanvas/catalog-card-images/retries.svg similarity index 100% rename from src/assets/images/meshmap/catalog-card-images/retries.svg rename to src/assets/images/kanvas/catalog-card-images/retries.svg diff --git a/src/assets/images/meshmap/catalog-card-images/retry-deadline.svg b/src/assets/images/kanvas/catalog-card-images/retry-deadline.svg similarity index 100% rename from src/assets/images/meshmap/catalog-card-images/retry-deadline.svg rename to src/assets/images/kanvas/catalog-card-images/retry-deadline.svg diff --git a/src/assets/images/meshmap/catalog-card-images/single-tenant.svg b/src/assets/images/kanvas/catalog-card-images/single-tenant.svg similarity index 100% rename from src/assets/images/meshmap/catalog-card-images/single-tenant.svg rename to src/assets/images/kanvas/catalog-card-images/single-tenant.svg diff --git a/src/assets/images/meshmap/catalog-card-images/singleton.svg b/src/assets/images/kanvas/catalog-card-images/singleton.svg similarity index 100% rename from src/assets/images/meshmap/catalog-card-images/singleton.svg rename to src/assets/images/kanvas/catalog-card-images/singleton.svg diff --git a/src/assets/images/meshmap/catalog-card-images/traces.svg b/src/assets/images/kanvas/catalog-card-images/traces.svg similarity index 100% rename from src/assets/images/meshmap/catalog-card-images/traces.svg rename to src/assets/images/kanvas/catalog-card-images/traces.svg diff --git a/src/assets/images/meshmap/docker_white.svg b/src/assets/images/kanvas/docker_white.svg similarity index 100% rename from src/assets/images/meshmap/docker_white.svg rename to src/assets/images/kanvas/docker_white.svg diff --git a/src/assets/images/meshmap/ebpf-dark.webp b/src/assets/images/kanvas/ebpf-dark.webp similarity index 100% rename from src/assets/images/meshmap/ebpf-dark.webp rename to src/assets/images/kanvas/ebpf-dark.webp diff --git a/src/assets/images/meshmap/ebpf.svg b/src/assets/images/kanvas/ebpf.svg similarity index 100% rename from src/assets/images/meshmap/ebpf.svg rename to src/assets/images/kanvas/ebpf.svg diff --git a/src/assets/images/meshmap/icon-only/meshmap-icon-white.svg b/src/assets/images/kanvas/icon-only/kanvas-icon-white.svg similarity index 100% rename from src/assets/images/meshmap/icon-only/meshmap-icon-white.svg rename to src/assets/images/kanvas/icon-only/kanvas-icon-white.svg diff --git a/src/assets/images/meshmap/icon-only/meshmap-icon-white.webp b/src/assets/images/kanvas/icon-only/kanvas-icon-white.webp similarity index 100% rename from src/assets/images/meshmap/icon-only/meshmap-icon-white.webp rename to src/assets/images/kanvas/icon-only/kanvas-icon-white.webp diff --git a/src/assets/images/meshmap/icon-only/meshmap-icon.svg b/src/assets/images/kanvas/icon-only/kanvas-icon.svg similarity index 100% rename from src/assets/images/meshmap/icon-only/meshmap-icon.svg rename to src/assets/images/kanvas/icon-only/kanvas-icon.svg diff --git a/src/assets/images/meshmap/icon-only/meshmap-icon.webp b/src/assets/images/kanvas/icon-only/kanvas-icon.webp similarity index 100% rename from src/assets/images/meshmap/icon-only/meshmap-icon.webp rename to src/assets/images/kanvas/icon-only/kanvas-icon.webp diff --git a/src/assets/images/meshmap/meshmap-collaborate.webp b/src/assets/images/kanvas/kanvas-collaborate.webp similarity index 100% rename from src/assets/images/meshmap/meshmap-collaborate.webp rename to src/assets/images/kanvas/kanvas-collaborate.webp diff --git a/src/assets/images/meshmap/meshmap-color-horizontal.svg b/src/assets/images/kanvas/kanvas-color-horizontal.svg similarity index 100% rename from src/assets/images/meshmap/meshmap-color-horizontal.svg rename to src/assets/images/kanvas/kanvas-color-horizontal.svg diff --git a/src/assets/images/meshmap/meshmap-color-icon.svg b/src/assets/images/kanvas/kanvas-color-icon.svg similarity index 100% rename from src/assets/images/meshmap/meshmap-color-icon.svg rename to src/assets/images/kanvas/kanvas-color-icon.svg diff --git a/src/assets/images/meshmap/meshmap-color-icon.webp b/src/assets/images/kanvas/kanvas-color-icon.webp similarity index 100% rename from src/assets/images/meshmap/meshmap-color-icon.webp rename to src/assets/images/kanvas/kanvas-color-icon.webp diff --git a/src/assets/images/meshmap/meshmap-color-stacked.svg b/src/assets/images/kanvas/kanvas-color-stacked.svg similarity index 100% rename from src/assets/images/meshmap/meshmap-color-stacked.svg rename to src/assets/images/kanvas/kanvas-color-stacked.svg diff --git a/src/assets/images/meshmap/meshmap-color-stacked.webp b/src/assets/images/kanvas/kanvas-color-stacked.webp similarity index 100% rename from src/assets/images/meshmap/meshmap-color-stacked.webp rename to src/assets/images/kanvas/kanvas-color-stacked.webp diff --git a/src/assets/images/meshmap/meshmap-color-text.svg b/src/assets/images/kanvas/kanvas-color-text.svg similarity index 100% rename from src/assets/images/meshmap/meshmap-color-text.svg rename to src/assets/images/kanvas/kanvas-color-text.svg diff --git a/src/assets/images/meshmap/meshmap-color-text.webp b/src/assets/images/kanvas/kanvas-color-text.webp similarity index 100% rename from src/assets/images/meshmap/meshmap-color-text.webp rename to src/assets/images/kanvas/kanvas-color-text.webp diff --git a/src/assets/images/meshmap/meshmap-light-stacked.svg b/src/assets/images/kanvas/kanvas-light-stacked.svg similarity index 100% rename from src/assets/images/meshmap/meshmap-light-stacked.svg rename to src/assets/images/kanvas/kanvas-light-stacked.svg diff --git a/src/assets/images/meshmap/kubernetes_white.svg b/src/assets/images/kanvas/kubernetes_white.svg similarity index 100% rename from src/assets/images/meshmap/kubernetes_white.svg rename to src/assets/images/kanvas/kubernetes_white.svg diff --git a/src/assets/images/meshmap/opa.svg b/src/assets/images/kanvas/opa.svg similarity index 100% rename from src/assets/images/meshmap/opa.svg rename to src/assets/images/kanvas/opa.svg diff --git a/src/collections/blog/2023/05-24-meet-the-meshmate-yash-sharma/index.mdx b/src/collections/blog/2023/05-24-meet-the-meshmate-yash-sharma/index.mdx index 41d859f2e11d..1c84d21bbfe6 100644 --- a/src/collections/blog/2023/05-24-meet-the-meshmate-yash-sharma/index.mdx +++ b/src/collections/blog/2023/05-24-meet-the-meshmate-yash-sharma/index.mdx @@ -68,7 +68,7 @@ import ForkLift from "../../../../assets/images/app/hero/forklift.svg";
Yash:

- "I remember introducing Meshery and Meshmap in my college event. It was an incredibly successful event, and I take great pride in being a part of a community that supports such innovative projects. The response from the attendees was overwhelming, and I am grateful for the hard work and dedication of all the contributors who played a pivotal role in making this project a resounding success. Their collective efforts truly deserve admiration and appreciation." + "I remember introducing Meshery and MeshMap in my college event. It was an incredibly successful event, and I take great pride in being a part of a community that supports such innovative projects. The response from the attendees was overwhelming, and I am grateful for the hard work and dedication of all the contributors who played a pivotal role in making this project a resounding success. Their collective efforts truly deserve admiration and appreciation."

diff --git a/src/collections/events/devconf-2022-measure-smp/index.mdx b/src/collections/events/devconf-2022-measure-smp/index.mdx index c46a3f4cd093..e91d507d7905 100644 --- a/src/collections/events/devconf-2022-measure-smp/index.mdx +++ b/src/collections/events/devconf-2022-measure-smp/index.mdx @@ -87,7 +87,7 @@ What types of service meshes are available? How do they contrast? Learn how Meshery, a CNCF Project, multi-service mesh management plane implements the service mesh specifications, Service Mesh Performance (SMP) and Service Mesh Interface (SMI), to empower users to manage more than 10 service meshes simultaneously. -Understand how Meshery uses a catalog of Cloud Native Patterns to provide templates for best practice configurations and how you can design new patterns with the visual topology designer, MeshMap +Understand how Meshery uses a catalog of Cloud Native Patterns to provide templates for best practice configurations and how you can design new patterns with the visual topology designer, Kanvas

diff --git a/src/collections/events/devops-and-docker-live/index.mdx b/src/collections/events/devops-and-docker-live/index.mdx index 1a03c9c6aa4b..2c0e71c330fc 100644 --- a/src/collections/events/devops-and-docker-live/index.mdx +++ b/src/collections/events/devops-and-docker-live/index.mdx @@ -18,6 +18,6 @@ import { Link } from "gatsby" ; Join host Bret Fisher and guests Lee Calcote from Layer5 and Nic Jackson from HashiCorp at DevOps and Docker Live Show to see the Meshery Docker Extension in-action! Design and deploy your Docker Compose and Kubernetes apps on Docker Desktop or any remote cluster. -The Meshery extension transforms Docker Desktop into powerful cloud native infrastructure development environment in a box with Kubernetes and service mesh. Learn how to discover and model your cloud native deployments with MeshMap. MeshMap enables GitOps integrated, visual composition of your cloud native infrastructure. +The Meshery extension transforms Docker Desktop into powerful cloud native infrastructure development environment in a box with Kubernetes and service mesh. Learn how to discover and model your cloud native deployments with Kanvas. Kanvas enables GitOps integrated, visual composition of your cloud native infrastructure. Can’t wait to get your hands on Docker Desktop for Meshery in the meantime? Sign up and learn all about the Meshery Docker Extension to make the most out of it. diff --git a/src/collections/events/docker-community-meetup-2022-hacktoberfest/index.mdx b/src/collections/events/docker-community-meetup-2022-hacktoberfest/index.mdx index 3c18c570480c..dbd7592353f7 100644 --- a/src/collections/events/docker-community-meetup-2022-hacktoberfest/index.mdx +++ b/src/collections/events/docker-community-meetup-2022-hacktoberfest/index.mdx @@ -36,7 +36,7 @@ Managing cloud native infrastructure becomes a nightmare with hundreds of distri
  • Performance Management and Metrics Intro, how to run performance tests, interpret the results, and metrics from Grafana and Prometheus.
  • An introduction to service meshes, the concept of meshery adapters, provisioning of service meshes, sample applications and SMI conformance tests.
  • Meshery Configurations: Application, Patterns, Filters, Pattern configurator, ingestion of K8s YAMLs, Docker-Compose apps, helm charts.
  • -
  • Introduction to MeshMap, the visual topology for your cloud native infrastructure.
  • +
  • Introduction to Kanvas, the visual topology for your cloud native infrastructure.
  • Hacktoberfest participation for newcomers in the community, how to get started, open issues and how to engage in the community.
  • diff --git a/src/collections/events/dockercon-2022/lightning-talk-on-the-main-stage.mdx b/src/collections/events/dockercon-2022/lightning-talk-on-the-main-stage.mdx index f8d868b40a42..fcdb30079a89 100644 --- a/src/collections/events/dockercon-2022/lightning-talk-on-the-main-stage.mdx +++ b/src/collections/events/dockercon-2022/lightning-talk-on-the-main-stage.mdx @@ -1,6 +1,6 @@ --- title: "DockerCon 2022: Lighting Talk on the main stage" -description: "Explore the unique functionalities of HashiCorp’s Consul service mesh with Meshery. Using the visual designer, MeshMap, Meshery empowers developers to fully understand Consul's differentiated capabilities, enabling visual configuration and deployment of Consul-based deployments and workloads." +description: "Explore the unique functionalities of HashiCorp’s Consul service mesh with Meshery. Using the visual designer, Kanvas, Meshery empowers developers to fully understand Consul's differentiated capabilities, enabling visual configuration and deployment of Consul-based deployments and workloads." thumbnail: ./Hashicorp.webp darkthumbnail: ./Hashicorp.webp date: 2022-05-10 @@ -17,7 +17,7 @@ featured: true import { Link } from "gatsby" ; -HashiCorp’s Consul service mesh offers unique functionality offered to its users. Using its visual designer, MeshMap, Meshery facilitates the developers full understanding of Consul’s differientiated capabilities, allowing developer’s to visually configure and deploy Consul-based deployments and their workloads. +HashiCorp’s Consul service mesh offers unique functionality offered to its users. Using its visual designer, Kanvas, Meshery facilitates the developers full understanding of Consul’s differientiated capabilities, allowing developer’s to visually configure and deploy Consul-based deployments and their workloads. The Meshery extension’s ability to import Docker Compose apps, convert them to Kubernetes applications, and deploy them on Consult service meshes is a powerful enabler for microservices developers, who need to dev, test, and deploy their modern applications in context of and compatibility with Consul service mesh. diff --git a/src/collections/events/kcd-chennai-2023/index.mdx b/src/collections/events/kcd-chennai-2023/index.mdx index 3def5638b354..313f38d3907b 100644 --- a/src/collections/events/kcd-chennai-2023/index.mdx +++ b/src/collections/events/kcd-chennai-2023/index.mdx @@ -7,7 +7,7 @@ darkthumbnail: ./kcd_chennai.webp eurl: https://www.kcdchennai.in/ type: Event published: true -product: MeshMap, Meshery +product: Kanvas, Meshery resource: true upcoming: false speakers: ["Pranav Singh"] diff --git a/src/collections/events/kickstarting-open-source-with-layer5-2023/index.mdx b/src/collections/events/kickstarting-open-source-with-layer5-2023/index.mdx index 22eeb100a384..48b9df1eb36d 100644 --- a/src/collections/events/kickstarting-open-source-with-layer5-2023/index.mdx +++ b/src/collections/events/kickstarting-open-source-with-layer5-2023/index.mdx @@ -7,7 +7,7 @@ darkthumbnail: ./kickstarting_your_open_source_with_layer5.webp eurl: https://lu.ma/z5sjbqws type: Event published: true -product: MeshMap, Meshery +product: Kanvas, Meshery resource: true upcoming: false speakers: ["Yash Sharma", "Samyak Shah"] diff --git a/src/collections/integrations/_images/consul/meshmap_dark_designer.png b/src/collections/integrations/_images/consul/meshmap_dark_designer.png deleted file mode 100644 index 7c0d3f2a789a..000000000000 Binary files a/src/collections/integrations/_images/consul/meshmap_dark_designer.png and /dev/null differ diff --git a/src/collections/integrations/_images/consul/meshmap_dark_visualizer.png b/src/collections/integrations/_images/consul/meshmap_dark_visualizer.png deleted file mode 100644 index 84a8e09fa3a8..000000000000 Binary files a/src/collections/integrations/_images/consul/meshmap_dark_visualizer.png and /dev/null differ diff --git a/src/collections/integrations/_images/consul/meshmap_light_designer.png b/src/collections/integrations/_images/consul/meshmap_light_designer.png deleted file mode 100644 index 42c57f7d9f9b..000000000000 Binary files a/src/collections/integrations/_images/consul/meshmap_light_designer.png and /dev/null differ diff --git a/src/collections/integrations/_images/consul/meshmap_light_visualizer.png b/src/collections/integrations/_images/consul/meshmap_light_visualizer.png deleted file mode 100644 index 73b59792d70a..000000000000 Binary files a/src/collections/integrations/_images/consul/meshmap_light_visualizer.png and /dev/null differ diff --git a/src/collections/integrations/_images/meshmap-aws-node-termination-designer-dark.png b/src/collections/integrations/_images/kanvas-aws-node-termination-designer-dark.png similarity index 100% rename from src/collections/integrations/_images/meshmap-aws-node-termination-designer-dark.png rename to src/collections/integrations/_images/kanvas-aws-node-termination-designer-dark.png diff --git a/src/collections/integrations/_images/meshmap-aws-node-termination-designer-light.png b/src/collections/integrations/_images/kanvas-aws-node-termination-designer-light.png similarity index 100% rename from src/collections/integrations/_images/meshmap-aws-node-termination-designer-light.png rename to src/collections/integrations/_images/kanvas-aws-node-termination-designer-light.png diff --git a/src/collections/integrations/_images/meshmap-aws-node-termination-visualizer-dark.png b/src/collections/integrations/_images/kanvas-aws-node-termination-visualizer-dark.png similarity index 100% rename from src/collections/integrations/_images/meshmap-aws-node-termination-visualizer-dark.png rename to src/collections/integrations/_images/kanvas-aws-node-termination-visualizer-dark.png diff --git a/src/collections/integrations/_images/meshmap-aws-node-termination-visualizer-light.png b/src/collections/integrations/_images/kanvas-aws-node-termination-visualizer-light.png similarity index 100% rename from src/collections/integrations/_images/meshmap-aws-node-termination-visualizer-light.png rename to src/collections/integrations/_images/kanvas-aws-node-termination-visualizer-light.png diff --git a/src/collections/integrations/_images/meshmap-designer-dark.png b/src/collections/integrations/_images/kanvas-designer-dark.png similarity index 100% rename from src/collections/integrations/_images/meshmap-designer-dark.png rename to src/collections/integrations/_images/kanvas-designer-dark.png diff --git a/src/collections/integrations/_images/meshmap-designer-light.png b/src/collections/integrations/_images/kanvas-designer-light.png similarity index 100% rename from src/collections/integrations/_images/meshmap-designer-light.png rename to src/collections/integrations/_images/kanvas-designer-light.png diff --git a/src/collections/integrations/_images/meshmap-designer.png b/src/collections/integrations/_images/kanvas-designer.png similarity index 100% rename from src/collections/integrations/_images/meshmap-designer.png rename to src/collections/integrations/_images/kanvas-designer.png diff --git a/src/collections/integrations/_images/meshmap-designer.webp b/src/collections/integrations/_images/kanvas-designer.webp similarity index 100% rename from src/collections/integrations/_images/meshmap-designer.webp rename to src/collections/integrations/_images/kanvas-designer.webp diff --git a/src/collections/integrations/_images/meshmap-regain-control.png b/src/collections/integrations/_images/kanvas-regain-control.png similarity index 100% rename from src/collections/integrations/_images/meshmap-regain-control.png rename to src/collections/integrations/_images/kanvas-regain-control.png diff --git a/src/collections/integrations/_images/meshmap-regain-control.webp b/src/collections/integrations/_images/kanvas-regain-control.webp similarity index 100% rename from src/collections/integrations/_images/meshmap-regain-control.webp rename to src/collections/integrations/_images/kanvas-regain-control.webp diff --git a/src/collections/integrations/_images/meshmap-visualizer-dark.png b/src/collections/integrations/_images/kanvas-visualizer-dark.png similarity index 100% rename from src/collections/integrations/_images/meshmap-visualizer-dark.png rename to src/collections/integrations/_images/kanvas-visualizer-dark.png diff --git a/src/collections/integrations/_images/meshmap-visualizer-light.png b/src/collections/integrations/_images/kanvas-visualizer-light.png similarity index 100% rename from src/collections/integrations/_images/meshmap-visualizer-light.png rename to src/collections/integrations/_images/kanvas-visualizer-light.png diff --git a/src/collections/integrations/_images/meshmap-visualizer.png b/src/collections/integrations/_images/kanvas-visualizer.png similarity index 100% rename from src/collections/integrations/_images/meshmap-visualizer.png rename to src/collections/integrations/_images/kanvas-visualizer.png diff --git a/src/collections/integrations/_images/meshmap-visualizer.webp b/src/collections/integrations/_images/kanvas-visualizer.webp similarity index 100% rename from src/collections/integrations/_images/meshmap-visualizer.webp rename to src/collections/integrations/_images/kanvas-visualizer.webp diff --git a/src/collections/integrations/aad-pod-identity/index.mdx b/src/collections/integrations/aad-pod-identity/index.mdx index 84bf70e559fa..65d4067b3c57 100644 --- a/src/collections/integrations/aad-pod-identity/index.mdx +++ b/src/collections/integrations/aad-pod-identity/index.mdx @@ -39,8 +39,8 @@ featureList: [ "Pod-managed identities are available on Linux node pools only." ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Federate with any external identity provider" howItWorksDetails: "Azure AD workload identity authentication method replaces pod-managed identity, which integrates with the Kubernetes native capabilities to federate with any external identity providers on behalf of the application." @@ -53,5 +53,5 @@ Enables Kubernetes applications to access cloud resources securely with Azure Ac 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/accurate/index.mdx b/src/collections/integrations/accurate/index.mdx index a279b6fd8023..21ff532cb720 100644 --- a/src/collections/integrations/accurate/index.mdx +++ b/src/collections/integrations/accurate/index.mdx @@ -21,8 +21,8 @@ featureList: [ "SubNamespace custom resource for tenant users." ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Collaborative Infrastructure as Design" howItWorksDetails: "Collaboratively manage infrastructure with your coworkers synchronously sharing the same designs." @@ -35,5 +35,5 @@ Accurate is a Kubernetes controller to help operations in large soft multi-tenan 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/actions-runner-controller/index.mdx b/src/collections/integrations/actions-runner-controller/index.mdx index 1ce19c48a6b0..5912d9bef39c 100644 --- a/src/collections/integrations/actions-runner-controller/index.mdx +++ b/src/collections/integrations/actions-runner-controller/index.mdx @@ -45,8 +45,8 @@ featureList: [ "Setup across GitHub editions including GitHub Enterprise editions and GitHub Enterprise Cloud." ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Collaborative Infrastructure as Design" howItWorksDetails: "Collaboratively manage infrastructure with your coworkers synchronously sharing the same designs." @@ -59,5 +59,5 @@ A Kubernetes controller that operates self-hosted runners for GitHub Actions on 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/admin-console-operator/index.mdx b/src/collections/integrations/admin-console-operator/index.mdx index ca770aef3f4e..0c428eb77c54 100644 --- a/src/collections/integrations/admin-console-operator/index.mdx +++ b/src/collections/integrations/admin-console-operator/index.mdx @@ -21,8 +21,8 @@ featureList: [ "Gerrit, GitLab or GitHub as a version control system for your code" ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Collaborative Infrastructure as Design" howItWorksDetails: "Collaboratively manage infrastructure with your coworkers synchronously sharing the same designs." @@ -35,5 +35,5 @@ EPAM Admin Console Operator 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/akri/index.mdx b/src/collections/integrations/akri/index.mdx index 665929e0adaa..93696ab769c8 100644 --- a/src/collections/integrations/akri/index.mdx +++ b/src/collections/integrations/akri/index.mdx @@ -27,8 +27,8 @@ featureList: [ "It provides an abstraction layer similar to CNI." ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Collaborative Infrastructure as Design" howItWorksDetails: "Collaboratively manage infrastructure with your coworkers synchronously sharing the same designs." @@ -41,5 +41,5 @@ A Kubernetes Resource Interface for the Edge 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/aks-appgw-fe/index.mdx b/src/collections/integrations/aks-appgw-fe/index.mdx index 2a840b5aa71f..d5f159c9dc4d 100644 --- a/src/collections/integrations/aks-appgw-fe/index.mdx +++ b/src/collections/integrations/aks-appgw-fe/index.mdx @@ -41,8 +41,8 @@ integrated web application firewall", "Secure Sockets Layer (SSL) termination and End-to-end SSL" ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Collaborative Infrastructure as Design" howItWorksDetails: "Application Gateway Ingress Controller runs in its own pod on the customer’s AKS. Ingress Controller monitors a subset of Kubernetes’ resources for changes. The state of the AKS cluster is translated to Application Gateway specific configuration and applied to the Azure Resource Manager. The continuous re-configuration of Application Gateway ensures uninterrupted flow of traffic to AKS’ services. The diagram below illustrates the flow of state and configuration changes from the Kubernetes API, via Application Gateway Ingress Controller, to Resource Manager and then Application Gateway." @@ -55,5 +55,5 @@ Create generic frontend web application in AKS with SSL termination on an Applic 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/altinity-clickhouse-operator/index.mdx b/src/collections/integrations/altinity-clickhouse-operator/index.mdx index a020c95b7ad8..cc0b51fdd77e 100644 --- a/src/collections/integrations/altinity-clickhouse-operator/index.mdx +++ b/src/collections/integrations/altinity-clickhouse-operator/index.mdx @@ -39,8 +39,8 @@ featureList: [ "Customize pod templates" ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Deploys and manages ClickHouse" howItWorksDetails: "Managed ClickHouse service for Kubernetes with enhanced features" @@ -53,5 +53,5 @@ Altinity ClickHouse is a managed ClickHouse service for Kubernetes. 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/ambassador/index.mdx b/src/collections/integrations/ambassador/index.mdx index 0fa149530ed0..e99702bba903 100644 --- a/src/collections/integrations/ambassador/index.mdx +++ b/src/collections/integrations/ambassador/index.mdx @@ -129,8 +129,8 @@ featureList: [ "Extensible with filters and plugins" ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Manages Ambassador configurations" howItWorksDetails: "Simplified API gateway management and enhanced traffic routing in Kubernetes" @@ -143,5 +143,5 @@ The Ambassador Edge Stack and its open source version Emissary-Ingress (FKA Amba 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/amd-gpu/index.mdx b/src/collections/integrations/amd-gpu/index.mdx index 91d0b5e7de7f..4159ecfa8e62 100644 --- a/src/collections/integrations/amd-gpu/index.mdx +++ b/src/collections/integrations/amd-gpu/index.mdx @@ -27,8 +27,8 @@ featureList: [ "Integrates with Kubernetes device plugin framework" ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Manages AMD GPU resources" howItWorksDetails: "Improved performance for GPU-accelerated workloads in Kubernetes" @@ -41,5 +41,5 @@ AMD GPU is a device plugin for Kubernetes that enables GPU acceleration for work 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/antrea/index.mdx b/src/collections/integrations/antrea/index.mdx index 9cb652ac6b98..9e077a4bb535 100644 --- a/src/collections/integrations/antrea/index.mdx +++ b/src/collections/integrations/antrea/index.mdx @@ -117,8 +117,8 @@ featureList: [ "Multi-cluster networking" ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Integrates Antrea configurations" howItWorksDetails: "Simplified network policy management and enhanced networking in Kubernetes" @@ -131,5 +131,5 @@ Kubernetes networking based on Open vSwitch 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/apache-shardingsphere-operator-charts/index.mdx b/src/collections/integrations/apache-shardingsphere-operator-charts/index.mdx index 5a66eaab4779..2c55901d56d1 100644 --- a/src/collections/integrations/apache-shardingsphere-operator-charts/index.mdx +++ b/src/collections/integrations/apache-shardingsphere-operator-charts/index.mdx @@ -51,8 +51,8 @@ featureList: [ "ShardingSphere provides flexible read/write splitting capabilities and can achieve read access load balancing based on the understanding of SQL semantics and the ability to perceive the underlying database topology." ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Collaborative Infrastructure as Design" howItWorksDetails: "Collaboratively manage infrastructure with your coworkers synchronously sharing the same designs." @@ -66,5 +66,5 @@ The ShardingSphere Kubernetes Operator automates provisioning, management, and o 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/aperture-agent/index.mdx b/src/collections/integrations/aperture-agent/index.mdx index b0a0ffc3039f..6da8ac20efba 100644 --- a/src/collections/integrations/aperture-agent/index.mdx +++ b/src/collections/integrations/aperture-agent/index.mdx @@ -21,8 +21,8 @@ featureList: [ "Integrates with various observability tools" ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Integrates Aperture Agent" howItWorksDetails: "Enhanced observability and security for Kubernetes applications" @@ -36,5 +36,5 @@ The Aperture Agent is the decision executor of the Aperture system. In addition 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/aperture-controller/index.mdx b/src/collections/integrations/aperture-controller/index.mdx index 623c473104c2..02301fc4b5f2 100644 --- a/src/collections/integrations/aperture-controller/index.mdx +++ b/src/collections/integrations/aperture-controller/index.mdx @@ -27,8 +27,8 @@ featureList: [ "Regulate and prioritize flows based on rules via a scheduler." ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Collaborative Infrastructure as Design" howItWorksDetails: "Collaboratively manage infrastructure with your coworkers synchronously sharing the same designs." @@ -41,5 +41,5 @@ The Aperture Controller functions as the brain of the Aperture system. Leveragin 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/apisix-ingress-controller/index.mdx b/src/collections/integrations/apisix-ingress-controller/index.mdx index c7215f3789f1..dae4df28c824 100644 --- a/src/collections/integrations/apisix-ingress-controller/index.mdx +++ b/src/collections/integrations/apisix-ingress-controller/index.mdx @@ -57,8 +57,8 @@ featureList: [ "Built-in and customizable plugins available." ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Collaborative Infrastructure as Design" howItWorksDetails: "Collaboratively manage infrastructure with your coworkers synchronously sharing the same designs." @@ -71,5 +71,5 @@ The Cloud-Native API Gateway 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/apisix/index.mdx b/src/collections/integrations/apisix/index.mdx index 5ffe1d68c66e..a398cad29ec2 100644 --- a/src/collections/integrations/apisix/index.mdx +++ b/src/collections/integrations/apisix/index.mdx @@ -57,8 +57,8 @@ featureList: [ "Observability and analytics" ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Integrates APISIX configurations" howItWorksDetails: "Streamlined API gateway management and enhanced traffic routing in Kubernetes" @@ -71,5 +71,5 @@ Enables Kubernetes applications to access cloud resources securely with Azure Ac 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/appmesh-controller/index.mdx b/src/collections/integrations/appmesh-controller/index.mdx index 3df721265f8d..aff6bbef121a 100644 --- a/src/collections/integrations/appmesh-controller/index.mdx +++ b/src/collections/integrations/appmesh-controller/index.mdx @@ -53,12 +53,12 @@ components: [ }] featureList: [ "Keep revision history and audit trail of all configuration changes", - "Use MeshMap‘s visual designer to explore your App Mesh configuration", + "Use Kanvas‘s visual designer to explore your App Mesh configuration", "Deploy Meshery on your EKS clusters for App Mesh management" ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Collaborative Infrastructure as Design" howItWorksDetails: "Collaboratively manage infrastructure with your coworkers synchronously sharing the same designs." @@ -68,5 +68,5 @@ published: TRUE AWS App Mesh is a service mesh that provides application-level networking to make it easy for your services to communicate with each other across multiple types of compute infrastructure. App Mesh standardizes how your services communicate, giving you end-to-end visibility and ensuring high-availability for your applications.

    - Deploy and manage the configuration of your AWS App Mesh using the Meshery Adapter for App Mesh. Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + Deploy and manage the configuration of your AWS App Mesh using the Meshery Adapter for App Mesh. 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.

    diff --git a/src/collections/integrations/argo-cd/index.mdx b/src/collections/integrations/argo-cd/index.mdx index cdabddba7744..0ebd0c131482 100644 --- a/src/collections/integrations/argo-cd/index.mdx +++ b/src/collections/integrations/argo-cd/index.mdx @@ -35,12 +35,12 @@ components: [ }] featureList: [ "Gain mastery over Argo as a workflow engine for Kubernetes", - "Design application definitions using the intuitive, context-aware visual designer, MeshMap.", + "Design application definitions using the intuitive, context-aware visual designer, Kanvas.", "Visualize your declarative, GitOps continuous delivery tool for Kubernetes." ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Collaborative Infrastructure as Design" howItWorksDetails: "Collaboratively manage infrastructure with your coworkers synchronously sharing the same designs." @@ -53,5 +53,5 @@ Workflow engine for Kubernetes 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/argo-workflows/index.mdx b/src/collections/integrations/argo-workflows/index.mdx index 660ccff7918e..8e127e18f74f 100644 --- a/src/collections/integrations/argo-workflows/index.mdx +++ b/src/collections/integrations/argo-workflows/index.mdx @@ -81,8 +81,8 @@ featureList: [ "Archiving Workflows after executing for later access." ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Collaborative Infrastructure as Design" howItWorksDetails: "Collaboratively manage infrastructure with your coworkers synchronously sharing the same designs." @@ -95,5 +95,5 @@ Workflow engine for Kubernetes 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/argocd-operator/index.mdx b/src/collections/integrations/argocd-operator/index.mdx index 02fd7421ef7d..6f92c0190e25 100644 --- a/src/collections/integrations/argocd-operator/index.mdx +++ b/src/collections/integrations/argocd-operator/index.mdx @@ -45,8 +45,8 @@ featureList: [ "Application deployment and lifecycle management can be automated, auditable, and easy to understand." ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Deploys and manages Argo CD" howItWorksDetails: "Simplified Argo CD management within Kubernetes" @@ -59,5 +59,5 @@ Argo CD Operator is a Kubernetes operator for managing Argo CD, a declarative, G 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/armory-spinnaker-operator/index.mdx b/src/collections/integrations/armory-spinnaker-operator/index.mdx index ecfe4d4e0d69..38cc779a96bd 100644 --- a/src/collections/integrations/armory-spinnaker-operator/index.mdx +++ b/src/collections/integrations/armory-spinnaker-operator/index.mdx @@ -27,8 +27,8 @@ featureList: [ "Keep secrets separate from your config." ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Collaborative Infrastructure as Design" howItWorksDetails: "Collaboratively manage infrastructure with your coworkers synchronously sharing the same designs." @@ -41,5 +41,5 @@ Spinnaker is an open source, multi-cloud continuous delivery platform for releas 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/artifact-hub/index.mdx b/src/collections/integrations/artifact-hub/index.mdx index 6fce580a685e..3a74fe693a57 100644 --- a/src/collections/integrations/artifact-hub/index.mdx +++ b/src/collections/integrations/artifact-hub/index.mdx @@ -15,8 +15,8 @@ featureList: [ "Subscribe to packages new releases and security alerts notifications, via email or webhooks." ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Collaborative Infrastructure as Design" howItWorksDetails: "Collaboratively manage infrastructure with your coworkers synchronously sharing the same designs." @@ -29,5 +29,5 @@ Find, install and publish Kubernetes packages 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/athenz/index.mdx b/src/collections/integrations/athenz/index.mdx index 166d8e4ecd77..06518c52624c 100644 --- a/src/collections/integrations/athenz/index.mdx +++ b/src/collections/integrations/athenz/index.mdx @@ -15,8 +15,8 @@ featureList: [ "Industry Standard Authorization mTLS bound access token." ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Collaborative Infrastructure as Design" howItWorksDetails: "Collaboratively manage infrastructure with your coworkers synchronously sharing the same designs." @@ -29,5 +29,5 @@ Open source platform for X.509 certificate based service authentication and fine 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/aws-api-gateway-operator/index.mdx b/src/collections/integrations/aws-api-gateway-operator/index.mdx index cdee22bb4cf1..b6b5d9895629 100644 --- a/src/collections/integrations/aws-api-gateway-operator/index.mdx +++ b/src/collections/integrations/aws-api-gateway-operator/index.mdx @@ -21,8 +21,8 @@ featureList: [ "API Gateway creates RESTful APIs that enable stateless client-server communication." ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Collaborative Infrastructure as Design" howItWorksDetails: "Collaboratively manage infrastructure with your coworkers synchronously sharing the same designs." @@ -35,5 +35,5 @@ Amazon API Gateway is a fully managed service that makes it easy for developers 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/aws-apigatewayv2-controller/index.mdx b/src/collections/integrations/aws-apigatewayv2-controller/index.mdx index a932a112369d..f530d7ffa204 100644 --- a/src/collections/integrations/aws-apigatewayv2-controller/index.mdx +++ b/src/collections/integrations/aws-apigatewayv2-controller/index.mdx @@ -81,8 +81,8 @@ featureList: [ "Provides authentication and authorization" ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Integrates with API Gateway" howItWorksDetails: "Simplified API management and governance in AWS" @@ -96,5 +96,5 @@ Amazon API Gateway is a fully managed service that makes it easy for developers 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/aws-applicationautoscaling-controller/index.mdx b/src/collections/integrations/aws-applicationautoscaling-controller/index.mdx index b5f0b3d36415..44a3963125d7 100644 --- a/src/collections/integrations/aws-applicationautoscaling-controller/index.mdx +++ b/src/collections/integrations/aws-applicationautoscaling-controller/index.mdx @@ -45,8 +45,8 @@ featureList: [ "Integrates with various AWS services" ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Integrates with Application Autoscaling" howItWorksDetails: "Automated scaling of resources for Kubernetes applications on AWS" @@ -59,5 +59,5 @@ AWS Auto Scaling monitors your applications and automatically adjusts capacity t 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/aws-cloudfront-controller/index.mdx b/src/collections/integrations/aws-cloudfront-controller/index.mdx index 063bf5f8c67f..ddb6f5198eb1 100644 --- a/src/collections/integrations/aws-cloudfront-controller/index.mdx +++ b/src/collections/integrations/aws-cloudfront-controller/index.mdx @@ -69,8 +69,8 @@ featureList: [ "Provides security features like DDoS protection" ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Integrates with CloudFront" howItWorksDetails: "Improved content delivery and security for Kubernetes applications" @@ -83,5 +83,5 @@ Amazon CloudFront is a content delivery network (CDN) service built for high per 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/aws-cloudtrail-controller/index.mdx b/src/collections/integrations/aws-cloudtrail-controller/index.mdx index 1d73b09db37e..c0ad3a770159 100644 --- a/src/collections/integrations/aws-cloudtrail-controller/index.mdx +++ b/src/collections/integrations/aws-cloudtrail-controller/index.mdx @@ -39,8 +39,8 @@ featureList: [ "Audit evidence from AWS Audit Manager that contains the information needed to demonstrate compliance with the requirements as specified by Audit Manager controls." ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Collaborative Infrastructure as Design" howItWorksDetails: "Collaboratively manage infrastructure with your coworkers synchronously sharing the same designs." @@ -53,5 +53,5 @@ AWS CloudTrail monitors and records account activity across your AWS infrastruct 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/aws-cloudwatch-controller/index.mdx b/src/collections/integrations/aws-cloudwatch-controller/index.mdx index 351a8cf645c6..6d9244d89c39 100644 --- a/src/collections/integrations/aws-cloudwatch-controller/index.mdx +++ b/src/collections/integrations/aws-cloudwatch-controller/index.mdx @@ -33,8 +33,8 @@ featureList: [ "Get a unified view of operational health and gain complete visibility of your AWS resources, applications, and services running on AWS and on-premises." ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Collaborative Infrastructure as Design" howItWorksDetails: "Collaboratively manage infrastructure with your coworkers synchronously sharing the same designs." @@ -47,5 +47,5 @@ CloudWatch enables you to monitor and observe your AWS and on-premises resources 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/aws-cloudwatchlogs-controller/index.mdx b/src/collections/integrations/aws-cloudwatchlogs-controller/index.mdx index dbc2efa966f1..62002e77b191 100644 --- a/src/collections/integrations/aws-cloudwatchlogs-controller/index.mdx +++ b/src/collections/integrations/aws-cloudwatchlogs-controller/index.mdx @@ -33,8 +33,8 @@ featureList: [ "Detect and debug using Live Tail – You can use Live Tail to quickly troubleshoot incidents by viewing a streaming list of new log events as they are ingested. " ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Collaborative Infrastructure as Design" howItWorksDetails: "Collaboratively manage infrastructure with your coworkers synchronously sharing the same designs." @@ -47,5 +47,5 @@ CloudWatch Logs enables you to centralize the logs from all of your systems, app 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/aws-documentdb-controller/index.mdx b/src/collections/integrations/aws-documentdb-controller/index.mdx index fd0550124b24..915e346ae82c 100644 --- a/src/collections/integrations/aws-documentdb-controller/index.mdx +++ b/src/collections/integrations/aws-documentdb-controller/index.mdx @@ -45,8 +45,8 @@ featureList: [ "Highly available and durable" ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Integrates DocumentDB" howItWorksDetails: "Simplified NoSQL database management on AWS" @@ -59,5 +59,5 @@ Amazon DocumentDB (with MongoDB compatibility) is a fully managed native JSON do 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/aws-dynamodb-controller/index.mdx b/src/collections/integrations/aws-dynamodb-controller/index.mdx index 004cfdc9bbe0..9d4e415fe00f 100644 --- a/src/collections/integrations/aws-dynamodb-controller/index.mdx +++ b/src/collections/integrations/aws-dynamodb-controller/index.mdx @@ -46,8 +46,8 @@ featureList: [ "Fast and flexible NoSQL database service for any scale" ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Collaborative Infrastructure as Design" howItWorksDetails: "Collaboratively manage infrastructure with your coworkers synchronously sharing the same designs." @@ -60,5 +60,5 @@ Amazon DynamoDB is a serverless, NoSQL, fully managed database with single-digit 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/aws-ec2-controller/index.mdx b/src/collections/integrations/aws-ec2-controller/index.mdx index f8fc2c7ff824..451835cde8b7 100644 --- a/src/collections/integrations/aws-ec2-controller/index.mdx +++ b/src/collections/integrations/aws-ec2-controller/index.mdx @@ -118,8 +118,8 @@ featureList: [ " ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Collaborative Infrastructure as Design" howItWorksDetails: "Collaboratively manage infrastructure with your coworkers synchronously sharing the same designs." @@ -132,5 +132,5 @@ Amazon Elastic Compute Cloud (Amazon EC2) offers the broadest and deepest comput 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/aws-ecr-controller/index.mdx b/src/collections/integrations/aws-ecr-controller/index.mdx index ea5269dbf732..3b7a9b24bffa 100644 --- a/src/collections/integrations/aws-ecr-controller/index.mdx +++ b/src/collections/integrations/aws-ecr-controller/index.mdx @@ -41,8 +41,8 @@ featureList: [ "Amazon ECR supports the ability to define and organize repositories in your registry using namespaces." ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Collaborative Infrastructure as Design" howItWorksDetails: "Collaboratively manage infrastructure with your coworkers synchronously sharing the same designs." @@ -55,5 +55,5 @@ Amazon Elastic Container Registry (Amazon ECR) is a fully managed container regi 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/aws-ecs-controller/index.mdx b/src/collections/integrations/aws-ecs-controller/index.mdx index 0be09ee0e5c3..1af8e6d9dcee 100644 --- a/src/collections/integrations/aws-ecs-controller/index.mdx +++ b/src/collections/integrations/aws-ecs-controller/index.mdx @@ -45,8 +45,8 @@ featureList: [ "Supports various container technologies" ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Deploys containers on ECS" howItWorksDetails: "Easy and scalable container management on AWS" @@ -59,5 +59,5 @@ Amazon Elastic Container Service (Amazon ECS) will launch, monitor, and scale yo 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/aws-efs-controller/index.mdx b/src/collections/integrations/aws-efs-controller/index.mdx index 170b175077f8..62133338d988 100644 --- a/src/collections/integrations/aws-efs-controller/index.mdx +++ b/src/collections/integrations/aws-efs-controller/index.mdx @@ -45,8 +45,8 @@ featureList: [ "Highly available and durable" ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Integrates EFS storage" howItWorksDetails: "Provides scalable and reliable file storage for Kubernetes applications" @@ -59,5 +59,5 @@ Amazon Elastic File System (Amazon EFS) automatically grows and shrinks as you a 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/aws-eks-controller/index.mdx b/src/collections/integrations/aws-eks-controller/index.mdx index 7eae8fdab187..4f91266d10b1 100644 --- a/src/collections/integrations/aws-eks-controller/index.mdx +++ b/src/collections/integrations/aws-eks-controller/index.mdx @@ -75,8 +75,8 @@ featureList: [ "High availability and scalability" ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Deploys and manages EKS clusters" howItWorksDetails: "Easy and scalable Kubernetes management on AWS" @@ -89,5 +89,5 @@ Amazon Elastic Kubernetes Service (Amazon EKS) is a managed service that you can 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/aws-elasticache-controller/index.mdx b/src/collections/integrations/aws-elasticache-controller/index.mdx index 6853e46139f0..71159235c808 100644 --- a/src/collections/integrations/aws-elasticache-controller/index.mdx +++ b/src/collections/integrations/aws-elasticache-controller/index.mdx @@ -69,8 +69,8 @@ featureList: [ "You can create an ElastiCache Serverless cache in a few steps by specifying a cache name in Meshery" ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Collaborative Infrastructure as Design" howItWorksDetails: "Collaboratively manage infrastructure with your coworkers synchronously sharing the same designs." @@ -83,5 +83,5 @@ Amazon ElastiCache allows you to seamlessly set up, run, and scale an in-memory 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/aws-elasticsearchservice-controller/index.mdx b/src/collections/integrations/aws-elasticsearchservice-controller/index.mdx index 21629f29cfcb..eaa57a23d559 100644 --- a/src/collections/integrations/aws-elasticsearchservice-controller/index.mdx +++ b/src/collections/integrations/aws-elasticsearchservice-controller/index.mdx @@ -27,8 +27,8 @@ featureList: [ "Integrates with other AWS services" ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Deploys and manages Elasticsearch" howItWorksDetails: "Simplified Elasticsearch management and integration with AWS" @@ -41,5 +41,5 @@ AWS ElasticSearch Service makes it easy for you to perform interactive log analy 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/aws-emrcontainers-controller/index.mdx b/src/collections/integrations/aws-emrcontainers-controller/index.mdx index d74858245bd9..2b057926b57d 100644 --- a/src/collections/integrations/aws-emrcontainers-controller/index.mdx +++ b/src/collections/integrations/aws-emrcontainers-controller/index.mdx @@ -39,8 +39,8 @@ featureList: [ "Cost-effective big data processing" ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Runs containers on EMR" howItWorksDetails: "Easier big data processing on Kubernetes with EMR" @@ -53,5 +53,5 @@ Amazon EMR on EKS provides a deployment option for Amazon EMR that allows you to 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/aws-eventbridge-controller/index.mdx b/src/collections/integrations/aws-eventbridge-controller/index.mdx index 9fd8c167cc65..510f42625d22 100644 --- a/src/collections/integrations/aws-eventbridge-controller/index.mdx +++ b/src/collections/integrations/aws-eventbridge-controller/index.mdx @@ -51,8 +51,8 @@ featureList: [ "Use Amazon EventBridge Scheduler to schedule tasks and events at scale." ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Collaborative Infrastructure as Design" howItWorksDetails: "Collaboratively manage infrastructure with your coworkers synchronously sharing the same designs." @@ -65,5 +65,5 @@ Amazon EventBridge enables you to build event-driven applications at scale acros 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/aws-iam-controller/index.mdx b/src/collections/integrations/aws-iam-controller/index.mdx index 60b72a87ee46..3197ea0c072e 100644 --- a/src/collections/integrations/aws-iam-controller/index.mdx +++ b/src/collections/integrations/aws-iam-controller/index.mdx @@ -63,8 +63,8 @@ featureList: [ "Establish organization-wide and preventative guardrails on AWS" ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Collaborative Infrastructure as Design" howItWorksDetails: "Collaboratively manage infrastructure with your coworkers synchronously sharing the same designs." @@ -77,5 +77,5 @@ AWS Identity and Access Management securely manage identities and access to AWS 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/aws-kinesis-controller/index.mdx b/src/collections/integrations/aws-kinesis-controller/index.mdx index 756c59b92ed6..2dbaf2326277 100644 --- a/src/collections/integrations/aws-kinesis-controller/index.mdx +++ b/src/collections/integrations/aws-kinesis-controller/index.mdx @@ -33,8 +33,8 @@ featureList: [ "Integrates with various AWS services" ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Integrates with Kinesis Data Streams" howItWorksDetails: "Real-time data processing and analytics in AWS" @@ -47,5 +47,5 @@ AWS Kinesis enables you to collect, process, and analyze video and data streams 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/aws-kms-controller/index.mdx b/src/collections/integrations/aws-kms-controller/index.mdx index 5f0d901d5b27..9aa615e4e313 100644 --- a/src/collections/integrations/aws-kms-controller/index.mdx +++ b/src/collections/integrations/aws-kms-controller/index.mdx @@ -45,8 +45,8 @@ featureList: [ "Integrates with other AWS services" ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Integrates with KMS" howItWorksDetails: "Enhanced security for Kubernetes applications and data on AWS" @@ -59,5 +59,5 @@ AWS Key Management Service (AWS KMS) is a managed service that makes it easy for 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/aws-lambda-controller/index.mdx b/src/collections/integrations/aws-lambda-controller/index.mdx index 5d40c0f78534..4052014a0934 100644 --- a/src/collections/integrations/aws-lambda-controller/index.mdx +++ b/src/collections/integrations/aws-lambda-controller/index.mdx @@ -69,8 +69,8 @@ featureList: [ "Bring your own code" ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Collaborative Infrastructure as Design" howItWorksDetails: "Collaboratively manage infrastructure with your coworkers synchronously sharing the same designs." @@ -83,5 +83,5 @@ AWS Lambda enables you to run code without provisioning or managing servers, cre 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/aws-load-balancer-controller/index.mdx b/src/collections/integrations/aws-load-balancer-controller/index.mdx index bc128fdd1b46..cf0e5a5561a6 100644 --- a/src/collections/integrations/aws-load-balancer-controller/index.mdx +++ b/src/collections/integrations/aws-load-balancer-controller/index.mdx @@ -21,8 +21,8 @@ featureList: [ "Supports IP address targeting mode for Network Load Balancers." ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Collaborative Infrastructure as Design" howItWorksDetails: "Elastic Load Balancing (ELB) automatically distributes incoming application traffic across multiple targets and virtual appliances in one or more Availability Zones (AZs)." @@ -37,5 +37,5 @@ Get Started with Elastic Load Balancing 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/aws-memorydb-controller/index.mdx b/src/collections/integrations/aws-memorydb-controller/index.mdx index 98e3aaa39345..099c15423d2b 100644 --- a/src/collections/integrations/aws-memorydb-controller/index.mdx +++ b/src/collections/integrations/aws-memorydb-controller/index.mdx @@ -63,8 +63,8 @@ featureList: [ "MemoryDB stores your entire dataset in memory to deliver microsecond read latency, single-digit millisecond write latency, and high throughput. It can handle more than 13 trillion requests per day and support peaks of 160 million requests per second." ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Collaborative Infrastructure as Design" howItWorksDetails: "Collaboratively manage infrastructure with your coworkers synchronously sharing the same designs." @@ -77,5 +77,5 @@ Amazon MemoryDB for Redis is a durable database with microsecond reads, low sing 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/aws-mq-controller/index.mdx b/src/collections/integrations/aws-mq-controller/index.mdx index c6f303fcf330..1f29905be41d 100644 --- a/src/collections/integrations/aws-mq-controller/index.mdx +++ b/src/collections/integrations/aws-mq-controller/index.mdx @@ -33,8 +33,8 @@ featureList: [ "Integrates with other AWS services" ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Integrates with AWS MQ" howItWorksDetails: "Simplified message brokering for Kubernetes applications on AWS" @@ -47,5 +47,5 @@ AWS MQ offers fully managed service for open-source message brokers 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/aws-node-termination-handler-2/index.mdx b/src/collections/integrations/aws-node-termination-handler-2/index.mdx index fbbca77fe5a3..f5e9b2dae54a 100644 --- a/src/collections/integrations/aws-node-termination-handler-2/index.mdx +++ b/src/collections/integrations/aws-node-termination-handler-2/index.mdx @@ -17,12 +17,12 @@ components: [ }] featureList: [ "Keep revision history and audit trail of all configuration changes", - "Use MeshMap‘s visual designer to explore your App Mesh configuration", + "Use Kanvas‘s visual designer to explore your App Mesh configuration", "Deploy Meshery on your EKS clusters for App Mesh management" ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Collaborative Infrastructure as Design" howItWorksDetails: "Collaboratively manage infrastructure with your coworkers synchronously sharing the same designs." @@ -38,5 +38,5 @@ Gracefully handle EC2 instance shutdown within Kubernetes 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/aws-prometheusservice-controller/index.mdx b/src/collections/integrations/aws-prometheusservice-controller/index.mdx index e5009ad0b351..2515b24b3e38 100644 --- a/src/collections/integrations/aws-prometheusservice-controller/index.mdx +++ b/src/collections/integrations/aws-prometheusservice-controller/index.mdx @@ -51,8 +51,8 @@ featureList: [ "Amazon Managed Service for Prometheus includes a query-compatible HTTP API that allows you to query metrics, metric labels, metric metadata, and time series metrics. " ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Collaborative Infrastructure as Design" howItWorksDetails: "Collaboratively manage infrastructure with your coworkers synchronously sharing the same designs." @@ -65,5 +65,5 @@ Amazon Managed Service for Prometheus is a Prometheus-compatible service that mo 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/aws-rds-controller/index.mdx b/src/collections/integrations/aws-rds-controller/index.mdx index 6a062ccb5e0f..1138290bad3f 100644 --- a/src/collections/integrations/aws-rds-controller/index.mdx +++ b/src/collections/integrations/aws-rds-controller/index.mdx @@ -87,8 +87,8 @@ featureList: [ "Amazon RDS provides Amazon CloudWatch metrics for your database instances at no additional charge." ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Collaborative Infrastructure as Design" howItWorksDetails: "Collaboratively manage infrastructure with your coworkers synchronously sharing the same designs." @@ -101,5 +101,5 @@ Amazon Relational Database Service (Amazon RDS) is a collection of managed servi 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/aws-route53-controller/index.mdx b/src/collections/integrations/aws-route53-controller/index.mdx index dbe1f421920c..191d1ca10d5c 100644 --- a/src/collections/integrations/aws-route53-controller/index.mdx +++ b/src/collections/integrations/aws-route53-controller/index.mdx @@ -45,8 +45,8 @@ featureList: [ "Customize your DNS routing policies to reduce latency, improve application availability, and maintain compliance." ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Collaborative Infrastructure as Design" howItWorksDetails: "Collaboratively manage infrastructure with your coworkers synchronously sharing the same designs." @@ -59,5 +59,5 @@ Amazon Route 53 is a highly available and scalable Domain Name System (DNS) web 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/aws-route53resolver-controller/index.mdx b/src/collections/integrations/aws-route53resolver-controller/index.mdx index 7a6cc5049fa6..e4074f7503da 100644 --- a/src/collections/integrations/aws-route53resolver-controller/index.mdx +++ b/src/collections/integrations/aws-route53resolver-controller/index.mdx @@ -42,8 +42,8 @@ featureList: [ " ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Collaborative Infrastructure as Design" howItWorksDetails: "Collaboratively manage infrastructure with your coworkers synchronously sharing the same designs." @@ -56,5 +56,5 @@ Amazon Route 53 Resolver responds recursively to DNS queries from AWS resources 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/aws-s3-controller/index.mdx b/src/collections/integrations/aws-s3-controller/index.mdx index 7ca3ce9f0eb3..c52a936fa529 100644 --- a/src/collections/integrations/aws-s3-controller/index.mdx +++ b/src/collections/integrations/aws-s3-controller/index.mdx @@ -33,8 +33,8 @@ featureList: [ "Integrates with various AWS services" ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Integrates S3 storage" howItWorksDetails: "Provides scalable and reliable storage for Kubernetes applications" @@ -47,5 +47,5 @@ Amazon Simple Storage Service (Amazon S3) is an object storage service offering 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/aws-sagemaker-controller/index.mdx b/src/collections/integrations/aws-sagemaker-controller/index.mdx index c80c77baecd0..415648e4a812 100644 --- a/src/collections/integrations/aws-sagemaker-controller/index.mdx +++ b/src/collections/integrations/aws-sagemaker-controller/index.mdx @@ -165,8 +165,8 @@ featureList: [ "Human-in-the-loop" ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Collaborative Infrastructure as Design" howItWorksDetails: "Collaboratively manage infrastructure with your coworkers synchronously sharing the same designs." @@ -179,5 +179,5 @@ Amazon SageMaker is a fully managed service that brings together a broad set of 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/aws-secretsmanager-controller/index.mdx b/src/collections/integrations/aws-secretsmanager-controller/index.mdx index e536f0e5e011..ba0386e38879 100644 --- a/src/collections/integrations/aws-secretsmanager-controller/index.mdx +++ b/src/collections/integrations/aws-secretsmanager-controller/index.mdx @@ -33,8 +33,8 @@ featureList: [ "Rotate secrets on demand or on a schedule, without redeploying or disrupting active applications." ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Collaborative Infrastructure as Design" howItWorksDetails: "Collaboratively manage infrastructure with your coworkers synchronously sharing the same designs." @@ -47,5 +47,5 @@ AWS Secrets Manager helps you manage, retrieve, and rotate database credentials, 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/aws-sfn-controller/index.mdx b/src/collections/integrations/aws-sfn-controller/index.mdx index e06cf036fed9..29b817222df3 100644 --- a/src/collections/integrations/aws-sfn-controller/index.mdx +++ b/src/collections/integrations/aws-sfn-controller/index.mdx @@ -39,8 +39,8 @@ featureList: [ "Examine the state of each step in your workflow to make sure that your application runs in order and as expected" ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Collaborative Infrastructure as Design" howItWorksDetails: "Collaboratively manage infrastructure with your coworkers synchronously sharing the same designs." @@ -53,5 +53,5 @@ AWS Step Functions is a serverless orchestration service that lets you integrate 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/aws-sns-controller/index.mdx b/src/collections/integrations/aws-sns-controller/index.mdx index 2196bf1f0eb1..1dfb5feb0a45 100644 --- a/src/collections/integrations/aws-sns-controller/index.mdx +++ b/src/collections/integrations/aws-sns-controller/index.mdx @@ -51,8 +51,8 @@ featureList: [ "Amazon SNS mobile notifications make it simple and cost effective to fan out mobile push notifications to iOS, Android, Fire, Windows, and Baidu devices." ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Collaborative Infrastructure as Design" howItWorksDetails: "Collaboratively manage infrastructure with your coworkers synchronously sharing the same designs." @@ -65,5 +65,5 @@ Amazon Simple Notification Service (Amazon SNS) sends notifications two ways, A2 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/aws-target-group-binding/index.mdx b/src/collections/integrations/aws-target-group-binding/index.mdx index e4bc6d81d532..3eef7b3cb241 100644 --- a/src/collections/integrations/aws-target-group-binding/index.mdx +++ b/src/collections/integrations/aws-target-group-binding/index.mdx @@ -21,8 +21,8 @@ featureList: [ "Used by AWS LoadBalancer controller internally to support the functionality for Ingress and Service resource as well." ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Collaborative Infrastructure as Design" howItWorksDetails: "Collaboratively manage infrastructure with your coworkers synchronously sharing the same designs." @@ -35,5 +35,5 @@ Povision a TargetGroupBinding resource that can be combined with an externally p 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/aws-vpc-cni/index.mdx b/src/collections/integrations/aws-vpc-cni/index.mdx index c32e9a913473..3fb2854aca8f 100644 --- a/src/collections/integrations/aws-vpc-cni/index.mdx +++ b/src/collections/integrations/aws-vpc-cni/index.mdx @@ -23,12 +23,12 @@ components: [ }] featureList: [ "Keep revision history and audit trail of all configuration changes", - "Use MeshMap‘s visual designer to explore your App Mesh configuration", + "Use Kanvas‘s visual designer to explore your App Mesh configuration", "Deploy Meshery on your EKS clusters for App Mesh management" ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Collaborative Infrastructure as Design" howItWorksDetails: "Collaboratively manage infrastructure with your coworkers synchronously sharing the same designs." @@ -42,5 +42,5 @@ Networking plugin for pod networking in Kubernetes using Elastic Network Interfa 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/aws/index.mdx b/src/collections/integrations/aws/index.mdx index f835c0904ce6..e86512df6001 100644 --- a/src/collections/integrations/aws/index.mdx +++ b/src/collections/integrations/aws/index.mdx @@ -1881,8 +1881,8 @@ featureList: [ "Ongoing synchronization of Kubernetes configuration and changes across any number of clusters." ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Collaborative Infrastructure as Design" howItWorksDetails: "Collaboratively manage infrastructure with your coworkers synchronously sharing the same designs." @@ -1895,5 +1895,5 @@ Amazon Web Services 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/awx-operator/index.mdx b/src/collections/integrations/awx-operator/index.mdx index 903bbdb15c26..09397d891961 100644 --- a/src/collections/integrations/awx-operator/index.mdx +++ b/src/collections/integrations/awx-operator/index.mdx @@ -35,12 +35,12 @@ components: [ }] featureList: [ "Keep revision history and audit trail of all configuration changes", - "Use MeshMap‘s visual designer to explore your App Mesh configuration", + "Use Kanvas‘s visual designer to explore your App Mesh configuration", "Deploy Meshery on your EKS clusters for App Mesh management" ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Collaborative Infrastructure as Design" howItWorksDetails: "Collaboratively manage infrastructure with your coworkers synchronously sharing the same designs." @@ -54,5 +54,5 @@ An Ansible AWX operator for Kubernetes built with Operator SDK and Ansible. 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/azureorkestra/index.mdx b/src/collections/integrations/azureorkestra/index.mdx index c633901fd171..b4e2bff09d58 100644 --- a/src/collections/integrations/azureorkestra/index.mdx +++ b/src/collections/integrations/azureorkestra/index.mdx @@ -129,8 +129,8 @@ featureList: [ "Enables policy-driven automation" ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Integrates with Azure Orkestra" howItWorksDetails: "Streamlined hybrid and multi-cloud orchestration within Kubernetes" @@ -143,5 +143,5 @@ Azure Orkestra is a Kubernetes-based platform for orchestrating hybrid and multi 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/backstage/index.mdx b/src/collections/integrations/backstage/index.mdx index a64e7f96f44d..937c663a5b0e 100644 --- a/src/collections/integrations/backstage/index.mdx +++ b/src/collections/integrations/backstage/index.mdx @@ -15,8 +15,8 @@ featureList: [ "Easily create, maintain, find, and use technical documentation, using a docs like code approach" ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Collaborative Infrastructure as Design" howItWorksDetails: "Collaboratively manage infrastructure with your coworkers synchronously sharing the same designs." @@ -29,5 +29,5 @@ Backstage is an open platform for building developer portals 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/bfe/index.mdx b/src/collections/integrations/bfe/index.mdx index ec39bb21faf4..e7500b496bf4 100644 --- a/src/collections/integrations/bfe/index.mdx +++ b/src/collections/integrations/bfe/index.mdx @@ -15,8 +15,8 @@ featureList: [ "BFE provides an advanced domain-specific language to describe routing rules which are easy to understand and maintain." ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Collaborative Infrastructure as Design" howItWorksDetails: "Collaboratively manage infrastructure with your coworkers synchronously sharing the same designs." @@ -29,5 +29,5 @@ Open-source layer 7 load balancer derived from proprietary Baidu FrontEnd 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/bitwarden-crd-operator/index.mdx b/src/collections/integrations/bitwarden-crd-operator/index.mdx index 4139746b9942..20b14e4e1f8e 100644 --- a/src/collections/integrations/bitwarden-crd-operator/index.mdx +++ b/src/collections/integrations/bitwarden-crd-operator/index.mdx @@ -33,8 +33,8 @@ featureList: [ "Deploys and manages Bitwarden" ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Streamlined Bitwarden secrets management in Kubernetes" howItWorksDetails: "Collaboratively manage infrastructure with your coworkers synchronously sharing the same designs." @@ -47,5 +47,5 @@ Bitwarden CRD Operator is a Kubernetes operator for managing Bitwarden, a passwo 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/brigade/index.mdx b/src/collections/integrations/brigade/index.mdx index 51e2eb6f7241..fd926540e622 100644 --- a/src/collections/integrations/brigade/index.mdx +++ b/src/collections/integrations/brigade/index.mdx @@ -15,8 +15,8 @@ featureList: [ "Enables high event throughput via its backing message queue." ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Collaborative Infrastructure as Design" howItWorksDetails: "Collaboratively manage infrastructure with your coworkers synchronously sharing the same designs." @@ -30,5 +30,5 @@ Brigade is a full-featured, event-driven scripting platform built on top of Kube 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/buildpacks/index.mdx b/src/collections/integrations/buildpacks/index.mdx index ee049e82bb32..f339312eb60d 100644 --- a/src/collections/integrations/buildpacks/index.mdx +++ b/src/collections/integrations/buildpacks/index.mdx @@ -15,8 +15,8 @@ featureList: [ "Replace Dockerfiles in the app development lifecycle." ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Collaborative Infrastructure as Design" howItWorksDetails: "Collaboratively manage infrastructure with your coworkers synchronously sharing the same designs." @@ -29,5 +29,5 @@ CLI for building apps using Cloud Native Buildpacks 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/camel-k/index.mdx b/src/collections/integrations/camel-k/index.mdx index c5a27abdaf84..b6f02929ed4c 100644 --- a/src/collections/integrations/camel-k/index.mdx +++ b/src/collections/integrations/camel-k/index.mdx @@ -63,8 +63,8 @@ featureList: [ "Minimal dependencies for easy embedding in any Java application." ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Collaborative Infrastructure as Design" howItWorksDetails: "Collaboratively manage infrastructure with your coworkers synchronously sharing the same designs." @@ -79,5 +79,5 @@ Users of Camel K can instantly run integration code written in Camel DSL on thei 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/capsule-proxy/index.mdx b/src/collections/integrations/capsule-proxy/index.mdx index 2fe80003035f..9514954fe481 100644 --- a/src/collections/integrations/capsule-proxy/index.mdx +++ b/src/collections/integrations/capsule-proxy/index.mdx @@ -21,8 +21,8 @@ featureList: [ "Capsule provides multi-tenancy in Kubernetes." ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Collaborative Infrastructure as Design" howItWorksDetails: "Collaboratively manage infrastructure with your coworkers synchronously sharing the same designs." @@ -35,5 +35,5 @@ Capsule implements a multi-tenant and policy-based environment in your Kubernete 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/cass-operator/index.mdx b/src/collections/integrations/cass-operator/index.mdx index 0ecad0df1d83..9e76f79e0d94 100644 --- a/src/collections/integrations/cass-operator/index.mdx +++ b/src/collections/integrations/cass-operator/index.mdx @@ -27,8 +27,8 @@ featureList: [ "Deploys and manages Cassandra" ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Simplified Cassandra management in Kubernetes" howItWorksDetails: "Collaboratively manage infrastructure with your coworkers synchronously sharing the same designs." @@ -41,5 +41,5 @@ Cass Operator is a Kubernetes operator for managing Apache Cassandra clusters. 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/cd-pipeline-operator/index.mdx b/src/collections/integrations/cd-pipeline-operator/index.mdx index 1982c61a1526..16f0779989e3 100644 --- a/src/collections/integrations/cd-pipeline-operator/index.mdx +++ b/src/collections/integrations/cd-pipeline-operator/index.mdx @@ -27,8 +27,8 @@ featureList: [ "Security covers authentication, authorization, and SSO for platform services." ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Collaborative Infrastructure as Design" howItWorksDetails: "Collaboratively manage infrastructure with your coworkers synchronously sharing the same designs." @@ -41,5 +41,5 @@ Boost your delivery with the development culture based on the modern CI/CD stack 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/cdk8s/index.mdx b/src/collections/integrations/cdk8s/index.mdx index 219a3b85d27b..39238bfa95c9 100644 --- a/src/collections/integrations/cdk8s/index.mdx +++ b/src/collections/integrations/cdk8s/index.mdx @@ -15,8 +15,8 @@ featureList: [ "Compose and share reusable components through code libraries." ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Deploy through GitOps" howItWorksDetails: "cdk8s is an open-source software development framework for defining Kubernetes applications and reusable abstractions using familiar programming languages and rich object-oriented APIs. cdk8s apps synthesize into standard Kubernetes manifests which can be applied to any Kubernetes cluster." @@ -29,5 +29,5 @@ CDK8s lets you define Kubernetes apps and components using familiar programming 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/cert-manager-crds/index.mdx b/src/collections/integrations/cert-manager-crds/index.mdx index f009a24fa135..1d1448060c8e 100644 --- a/src/collections/integrations/cert-manager-crds/index.mdx +++ b/src/collections/integrations/cert-manager-crds/index.mdx @@ -15,8 +15,8 @@ featureList: [ "Defines cert-manager resources (certificates, issuers, etc.)" ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Integrates with Cert Manager CRDs" howItWorksDetails: "Simplified certificate management within Kubernetes" @@ -29,5 +29,5 @@ Cert Manager CRDs (Custom Resource Definitions) are Kubernetes resources that de 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/cert-manager-csi-driver-cacerts/index.mdx b/src/collections/integrations/cert-manager-csi-driver-cacerts/index.mdx index 480d22e03032..9cb8e88fec88 100644 --- a/src/collections/integrations/cert-manager-csi-driver-cacerts/index.mdx +++ b/src/collections/integrations/cert-manager-csi-driver-cacerts/index.mdx @@ -33,8 +33,8 @@ featureList: [ "Simplifies certificate distribution" ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Manages certificates with cert-manager" howItWorksDetails: "Streamlined certificate management and enhanced security in Kubernetes" @@ -47,5 +47,5 @@ Cert Manager CSI Driver Cacerts is a Kubernetes CSI driver plugin for managing C 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/cert-manager/index.mdx b/src/collections/integrations/cert-manager/index.mdx index c8b6aca0f4f8..cf01271b8ce9 100644 --- a/src/collections/integrations/cert-manager/index.mdx +++ b/src/collections/integrations/cert-manager/index.mdx @@ -15,8 +15,8 @@ featureList: [ "Simplifies certificate management" ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Manages certificates with Cert-Manager" howItWorksDetails: "Streamlined certificate management and enhanced security in Kubernetes" @@ -29,5 +29,5 @@ Cert-Manager provides cloud native key management in the form of X.509 certifica 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/chaos-mesh/index.mdx b/src/collections/integrations/chaos-mesh/index.mdx index b7edcdba6d7e..a8dfe9f7b28d 100644 --- a/src/collections/integrations/chaos-mesh/index.mdx +++ b/src/collections/integrations/chaos-mesh/index.mdx @@ -153,8 +153,8 @@ featureList: [ "Supports Kubernetes and other platforms" ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Integrates ChaosBlade experiments" howItWorksDetails: "Improves system resilience and fault tolerance through chaos testing" @@ -167,5 +167,5 @@ A Chaos Engineering Platform for Kubernetes. 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/chaos/index.mdx b/src/collections/integrations/chaos/index.mdx index 063118b2165d..e061a282ec92 100644 --- a/src/collections/integrations/chaos/index.mdx +++ b/src/collections/integrations/chaos/index.mdx @@ -153,8 +153,8 @@ featureList: [ "Integrates with Kubernetes resources" ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Integrates chaos experiments" howItWorksDetails: "Enhanced resilience testing and validation of Kubernetes applications" @@ -167,5 +167,5 @@ Chaos Mesh is a cloud-native Chaos Engineering platform that orchestrates chaos 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/cilium/index.mdx b/src/collections/integrations/cilium/index.mdx index ca6c0b4b673c..cb6576b8af8e 100644 --- a/src/collections/integrations/cilium/index.mdx +++ b/src/collections/integrations/cilium/index.mdx @@ -81,8 +81,8 @@ featureList: [ "Visually configure and explore your Cilium Service Mesh topology" ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Collaborative Infrastructure as Design" howItWorksDetails: "Collaboratively manage infrastructure with your coworkers synchronously sharing the same designs." @@ -95,5 +95,5 @@ Cilium is an open source software for providing, securing and observing network 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/clickhouse/index.mdx b/src/collections/integrations/clickhouse/index.mdx index b1425a3eaee2..58ba8456b3a6 100644 --- a/src/collections/integrations/clickhouse/index.mdx +++ b/src/collections/integrations/clickhouse/index.mdx @@ -39,8 +39,8 @@ featureList: [ "Scalable distributed architecture" ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Integrates ClickHouse" howItWorksDetails: "High-performance analytics database for Kubernetes data" @@ -53,5 +53,5 @@ ClickHouse is a high-performance, column-oriented database management system opt 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/cloud-custodian/index.mdx b/src/collections/integrations/cloud-custodian/index.mdx index c9c48272dce5..47672760e4f8 100644 --- a/src/collections/integrations/cloud-custodian/index.mdx +++ b/src/collections/integrations/cloud-custodian/index.mdx @@ -15,8 +15,8 @@ featureList: [ "Supports IP address targeting mode for Network Load Balancers." ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Collaborative Infrastructure as Design" howItWorksDetails: "Elastic Load Balancing (ELB) automatically distributes incoming application traffic across multiple targets and virtual appliances in one or more Availability Zones (AZs)." @@ -29,5 +29,5 @@ Rules engine for cloud security, cost optimization, and governance, DSL in yaml 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/cloudevents/index.mdx b/src/collections/integrations/cloudevents/index.mdx index baf2c1b75552..fec6fc85d7df 100644 --- a/src/collections/integrations/cloudevents/index.mdx +++ b/src/collections/integrations/cloudevents/index.mdx @@ -15,8 +15,8 @@ featureList: [ "Provides interoperability across services, platforms and systems." ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Collaborative Infrastructure as Design" howItWorksDetails: "Collaboratively manage infrastructure with your coworkers synchronously sharing the same designs." @@ -29,5 +29,5 @@ CloudEvents Specification 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/cloudnative-pg/index.mdx b/src/collections/integrations/cloudnative-pg/index.mdx index 58d34e019279..07f290b285d0 100644 --- a/src/collections/integrations/cloudnative-pg/index.mdx +++ b/src/collections/integrations/cloudnative-pg/index.mdx @@ -51,8 +51,8 @@ featureList: [ "Advanced PostgreSQL features (e.g., logical replication)" ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Deploys and manages PostgreSQL" howItWorksDetails: "Streamlined PostgreSQL management within Kubernetes" @@ -65,5 +65,5 @@ CloudNativePG is the Kubernetes operator that covers the full lifecycle of a hig 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/cluster-api-provider-openstack/index.mdx b/src/collections/integrations/cluster-api-provider-openstack/index.mdx index 8f8c877922cd..5e6faec521a1 100644 --- a/src/collections/integrations/cluster-api-provider-openstack/index.mdx +++ b/src/collections/integrations/cluster-api-provider-openstack/index.mdx @@ -51,8 +51,8 @@ featureList: [ "Integrates with Cluster API" ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Provisions Kubernetes clusters on OpenStack" howItWorksDetails: "Streamlined Kubernetes cluster provisioning on OpenStack" @@ -65,5 +65,5 @@ OpenStack controls large pools of compute, storage, and networking resources, al 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/clusterpedia/index.mdx b/src/collections/integrations/clusterpedia/index.mdx index 29da022bb387..269809aa8704 100644 --- a/src/collections/integrations/clusterpedia/index.mdx +++ b/src/collections/integrations/clusterpedia/index.mdx @@ -39,8 +39,8 @@ featureList: [ "Ongoing synchronization of Kubernetes configuration and changes across any number of clusters." ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Collaborative Infrastructure as Design" howItWorksDetails: "Collaboratively manage infrastructure with your coworkers synchronously sharing the same designs." @@ -53,5 +53,5 @@ Clusterpedia is used for complex resources search across multiple clusters, supp 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/cockroachdb-operator/index.mdx b/src/collections/integrations/cockroachdb-operator/index.mdx index 6aa84f8285c9..d2bac74219a3 100644 --- a/src/collections/integrations/cockroachdb-operator/index.mdx +++ b/src/collections/integrations/cockroachdb-operator/index.mdx @@ -22,8 +22,8 @@ featureList: [ " ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Collaborative Infrastructure as Design" howItWorksDetails: "Collaboratively manage infrastructure with your coworkers synchronously sharing the same designs." @@ -39,5 +39,5 @@ Couchbase Autonomous Operator enables DevOps teams to run, auto-scale, and manag 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/confidential-containers/index.mdx b/src/collections/integrations/confidential-containers/index.mdx index a178dc8a6d3f..95f5c0d56035 100644 --- a/src/collections/integrations/confidential-containers/index.mdx +++ b/src/collections/integrations/confidential-containers/index.mdx @@ -21,8 +21,8 @@ featureList: [ "Support for multiple TEE and hardware platforms." ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Collaborative Infrastructure as Design" howItWorksDetails: "Collaboratively manage infrastructure with your coworkers synchronously sharing the same designs." @@ -35,5 +35,5 @@ Confidential Containers is an open source community working to enable cloud nati 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/consul/index.mdx b/src/collections/integrations/consul/index.mdx index ae3aa9937e99..80bfd6cbb7b6 100644 --- a/src/collections/integrations/consul/index.mdx +++ b/src/collections/integrations/consul/index.mdx @@ -201,8 +201,8 @@ featureList: [ "Explore Consuls Service Splitter" ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Collaborative Infrastructure as Design" howItWorksDetails: "Collaboratively manage infrastructure with your coworkers synchronously sharing the same designs." @@ -215,5 +215,5 @@ Consul is a distributed, highly available, and data center aware solution to con 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/containerd/index.mdx b/src/collections/integrations/containerd/index.mdx index a3f05ba49c3e..1f73fdf18ca5 100644 --- a/src/collections/integrations/containerd/index.mdx +++ b/src/collections/integrations/containerd/index.mdx @@ -15,8 +15,8 @@ featureList: [ "Supports lazy pulling feature." ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Collaborative Infrastructure as Design" howItWorksDetails: "Collaboratively manage infrastructure with your coworkers synchronously sharing the same designs." @@ -29,5 +29,5 @@ An open and reliable container runtime 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/containerssh/index.mdx b/src/collections/integrations/containerssh/index.mdx index 83cdc5c78182..5bac468ce365 100644 --- a/src/collections/integrations/containerssh/index.mdx +++ b/src/collections/integrations/containerssh/index.mdx @@ -15,8 +15,8 @@ featureList: [ "Multi-factor authentication (MFA) support" ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Collaborative Infrastructure as Design" howItWorksDetails: "Secure and flexible SSH access to Kubernetes resources" @@ -29,5 +29,5 @@ ContainerSSH launches a new container for each SSH connection in Kubernetes, Pod 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/contour-operator/index.mdx b/src/collections/integrations/contour-operator/index.mdx index 5eb2e2c56c74..e09701256071 100644 --- a/src/collections/integrations/contour-operator/index.mdx +++ b/src/collections/integrations/contour-operator/index.mdx @@ -87,8 +87,8 @@ featureList: [ "Solves shortcomings in the original design." ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Collaborative Infrastructure as Design" howItWorksDetails: "Builds upon the basic Kubernetes resource and controller concepts, but includes domain-specific knowledge to automate the entire lifecycle of Contour." @@ -101,5 +101,5 @@ Contour is a Kubernetes ingress controller using Envoy proxy. 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/contrail-analytics/index.mdx b/src/collections/integrations/contrail-analytics/index.mdx index 831a66f03cbf..3b5a6b919e63 100644 --- a/src/collections/integrations/contrail-analytics/index.mdx +++ b/src/collections/integrations/contrail-analytics/index.mdx @@ -255,8 +255,8 @@ featureList: [ "" ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Manages network connections with Connect" howItWorksDetails: "Simplified network connectivity management in Kubernetes" @@ -269,5 +269,5 @@ Contrail Analytics is a component of Juniper Networks Contrail for network analy 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/coredns/index.mdx b/src/collections/integrations/coredns/index.mdx index 448c829095c2..0423264acca3 100644 --- a/src/collections/integrations/coredns/index.mdx +++ b/src/collections/integrations/coredns/index.mdx @@ -15,8 +15,8 @@ featureList: [ "Signs zone data on-the-fly (dnssec)." ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Collaborative Infrastructure as Design" howItWorksDetails: "Collaboratively manage infrastructure with your coworkers synchronously sharing the same designs." @@ -29,5 +29,5 @@ CoreDNS is a DNS server that chains plugins 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/cortex/index.mdx b/src/collections/integrations/cortex/index.mdx index 91c9feac9a6c..9f0d509d2477 100644 --- a/src/collections/integrations/cortex/index.mdx +++ b/src/collections/integrations/cortex/index.mdx @@ -15,8 +15,8 @@ featureList: [ "Gives you a global view of Prometheus time series data that includes data in long-term storage, greatly expanding the usefulness of PromQL for analytical purposes." ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Collaborative Infrastructure as Design" howItWorksDetails: "Collaboratively manage infrastructure with your coworkers synchronously sharing the same designs." @@ -29,5 +29,5 @@ A horizontally scalable, highly available, multi-tenant, long term Prometheus. 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/couchbase-monitor-stack/index.mdx b/src/collections/integrations/couchbase-monitor-stack/index.mdx index cf67c67e277a..d1fa4962305b 100644 --- a/src/collections/integrations/couchbase-monitor-stack/index.mdx +++ b/src/collections/integrations/couchbase-monitor-stack/index.mdx @@ -63,8 +63,8 @@ featureList: [ "Customizable dashboards and alerts" ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Integrates monitoring stack" howItWorksDetails: "Enhanced observability of Couchbase clusters in Kubernetes" @@ -77,5 +77,5 @@ Couchbase Monitor Stack is a collection of tools for monitoring Couchbase cluste 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/couchbase-operator/index.mdx b/src/collections/integrations/couchbase-operator/index.mdx index 47668de29644..f4263413d732 100644 --- a/src/collections/integrations/couchbase-operator/index.mdx +++ b/src/collections/integrations/couchbase-operator/index.mdx @@ -111,8 +111,8 @@ featureList: [ "Simplifies Couchbase operations" ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Deploys and manages Couchbase" howItWorksDetails: "Streamlined Couchbase management in Kubernetes" @@ -125,5 +125,5 @@ Couchbase Operator is a Kubernetes operator for managing Couchbase clusters. 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/cpx/index.mdx b/src/collections/integrations/cpx/index.mdx index 381b577be936..663f1d58a155 100644 --- a/src/collections/integrations/cpx/index.mdx +++ b/src/collections/integrations/cpx/index.mdx @@ -15,8 +15,8 @@ featureList: [ "Design Istio Virtual Services" ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Collaborative Infrastructure as Design" howItWorksDetails: "Collaboratively manage infrastructure with your coworkers synchronously sharing the same designs." @@ -30,6 +30,6 @@ Unlock all of Citrix Service Mesh features with Meshery clicks. Design, build, and automate anything for your work by integrating apps like Citrix Service Mesh to create visual automatedcl workflows. Choose from hundreds of ready-made design patterns or use - our no-code designer, MeshMap to connect to apps not yet in our + our no-code designer, Kanvas to connect to apps not yet in our library.

    diff --git a/src/collections/integrations/cri-o/index.mdx b/src/collections/integrations/cri-o/index.mdx index 9bfa165a6b31..94cb7c96f285 100644 --- a/src/collections/integrations/cri-o/index.mdx +++ b/src/collections/integrations/cri-o/index.mdx @@ -15,8 +15,8 @@ featureList: [ "Container process lifecycle management" ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Collaborative Infrastructure as Design" howItWorksDetails: "Collaboratively manage infrastructure with your coworkers synchronously sharing the same designs." @@ -29,5 +29,5 @@ Open Container Initiative-based implementation of Kubernetes Container Runtime I 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/crossplane-provider-openstack/index.mdx b/src/collections/integrations/crossplane-provider-openstack/index.mdx index 59bc8cda1664..13ffb7fe1fae 100644 --- a/src/collections/integrations/crossplane-provider-openstack/index.mdx +++ b/src/collections/integrations/crossplane-provider-openstack/index.mdx @@ -567,8 +567,8 @@ featureList: [ "Integrates with Kubernetes ecosystem" ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Manages OpenStack resources with Crossplane" howItWorksDetails: "Unified management of OpenStack and Kubernetes resources" @@ -581,5 +581,5 @@ OpenStack controls large pools of compute, storage, and networking resources, al 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/crossplane/index.mdx b/src/collections/integrations/crossplane/index.mdx index 757f2c415cc0..eef2f6c9100b 100644 --- a/src/collections/integrations/crossplane/index.mdx +++ b/src/collections/integrations/crossplane/index.mdx @@ -105,8 +105,8 @@ featureList: [ "Provides reliability and security features like Role Based Access Control (RBAC) to orchestrate everything - not just containers." ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Collaborative Infrastructure as Design" howItWorksDetails: "Collaboratively manage infrastructure with your coworkers synchronously sharing the same designs." @@ -119,5 +119,5 @@ Cloud Native Control Planes 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/cubefs/index.mdx b/src/collections/integrations/cubefs/index.mdx index 31076c10ef88..fedbbf13b4fa 100644 --- a/src/collections/integrations/cubefs/index.mdx +++ b/src/collections/integrations/cubefs/index.mdx @@ -15,8 +15,8 @@ featureList: [ "Specific performance optimizations for large/small files and sequential/random writes." ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Collaborative Infrastructure as Design" howItWorksDetails: "Collaboratively manage infrastructure with your coworkers synchronously sharing the same designs." @@ -29,5 +29,5 @@ CubeFS is a cloud native distributed storage platform. 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/curiefense/index.mdx b/src/collections/integrations/curiefense/index.mdx index a5ba35bd8835..3dc995a6114d 100644 --- a/src/collections/integrations/curiefense/index.mdx +++ b/src/collections/integrations/curiefense/index.mdx @@ -87,8 +87,8 @@ featureList: [ "It is integrated with NGINX and Envoy proxy." ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Collaborative Infrastructure as Design" howItWorksDetails: "Collaboratively manage infrastructure with your coworkers synchronously sharing the same designs." @@ -101,5 +101,5 @@ Curiefense is a unified, open source platform protecting cloud native applicatio 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/dapr/index.mdx b/src/collections/integrations/dapr/index.mdx index 0325578d3f27..a2942c4fb922 100644 --- a/src/collections/integrations/dapr/index.mdx +++ b/src/collections/integrations/dapr/index.mdx @@ -45,8 +45,8 @@ featureList: [ "Leverages proven practices for distributed application development that enable you to build resilient, secured systems." ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Collaborative Infrastructure as Design" howItWorksDetails: "Collaboratively manage infrastructure with your coworkers synchronously sharing the same designs." @@ -59,5 +59,5 @@ Dapr is a portable, event-driven, runtime for building distributed applications 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/datadog-operator/index.mdx b/src/collections/integrations/datadog-operator/index.mdx index 3a5cf7fcd00f..396f1e0c4d4b 100644 --- a/src/collections/integrations/datadog-operator/index.mdx +++ b/src/collections/integrations/datadog-operator/index.mdx @@ -69,8 +69,8 @@ featureList: [ "Quickly search, filter, and analyze your logs for troubleshooting and open-ended exploration of your data." ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Integrates with Kubernetes resources" howItWorksDetails: "Deploys and manages Datadog agents" @@ -83,5 +83,5 @@ Datadog Operator is a Kubernetes operator for managing Datadog agents and integr 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/devfile/index.mdx b/src/collections/integrations/devfile/index.mdx index a3c03726bad2..c510aa95d93d 100644 --- a/src/collections/integrations/devfile/index.mdx +++ b/src/collections/integrations/devfile/index.mdx @@ -27,8 +27,8 @@ featureList: [ "Central location management so updates can be applied once and be properly aligned across development teams." ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Collaborative Infrastructure as Design" howItWorksDetails: "Collaboratively manage infrastructure with your coworkers synchronously sharing the same designs." @@ -41,5 +41,5 @@ Kube-native API for cloud development workspaces specification 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/devstream/index.mdx b/src/collections/integrations/devstream/index.mdx index 5f488e50fb4e..94dad94101a0 100644 --- a/src/collections/integrations/devstream/index.mdx +++ b/src/collections/integrations/devstream/index.mdx @@ -15,8 +15,8 @@ featureList: [ "Implement inbuilt best practices and share yours with the world." ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Collaborative Infrastructure as Design" howItWorksDetails: "Collaboratively manage infrastructure with your coworkers synchronously sharing the same designs." @@ -29,5 +29,5 @@ DevStream: the open-source DevOps toolchain manager (DTM). 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/dex/index.mdx b/src/collections/integrations/dex/index.mdx index d84e417e1ce3..642fe07a7c2d 100644 --- a/src/collections/integrations/dex/index.mdx +++ b/src/collections/integrations/dex/index.mdx @@ -15,8 +15,8 @@ featureList: [ "Provides authentication for Kubernetes services" ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Integrates Dex with Kubernetes" howItWorksDetails: "Centralized authentication for Kubernetes applications" @@ -29,5 +29,5 @@ OpenID Connect (OIDC) identity and OAuth 2.0 provider with pluggable connectors 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/distribution/index.mdx b/src/collections/integrations/distribution/index.mdx index 12004291950b..b01031e2cf8d 100644 --- a/src/collections/integrations/distribution/index.mdx +++ b/src/collections/integrations/distribution/index.mdx @@ -15,8 +15,8 @@ featureList: [ "Efficient network utilization by optimizing replication, dramatically reducing network load and release bundle synchronization time from source Artifactory to target instance or Edge node." ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Collaborative Infrastructure as Design" howItWorksDetails: "Efficient network utilization by optimizing replication, dramatically reducing network load and release bundle synchronization time from source Artifactory to target instance or Edge node." @@ -29,5 +29,5 @@ The toolkit to pack, ship, store, and deliver container content 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/docker/index.mdx b/src/collections/integrations/docker/index.mdx index 08c282fa21a2..00c893c53e9e 100644 --- a/src/collections/integrations/docker/index.mdx +++ b/src/collections/integrations/docker/index.mdx @@ -15,11 +15,11 @@ featureList: [ "Meshery Docker Extension extends Docker Desktop’s position as the cloud native developer’s go-to Kubernetes environment with easy access to the next layer of cloud native infrastructure: service meshes." ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Collaborative Infrastructure as Design" -howItWorksDetails: "From the convenience of your Docker Desktop interface, connect Meshery with your Kubernetes cluster. Watch as MeshSync discovers all of your Kuberentes clusters. Visually design your Docker-based infrastructure. Choose from hundreds of ready-made design patterns using Meshery Catalog. Use our no-code designer, MeshMap, to collaboratively design and operate your infra." +howItWorksDetails: "From the convenience of your Docker Desktop interface, connect Meshery with your Kubernetes cluster. Watch as MeshSync discovers all of your Kuberentes clusters. Visually design your Docker-based infrastructure. Choose from hundreds of ready-made design patterns using Meshery Catalog. Use our no-code designer, Kanvas, to collaboratively design and operate your infra." published: TRUE ---

    @@ -30,6 +30,6 @@ Develop service mesh-ready apps using Docker Desktop and Meshery clicks. Design, build, and automate anything for your work by integrating apps like Docker to create visual automatedcl workflows. Choose from hundreds of ready-made design patterns or use - our no-code designer, MeshMap to connect to apps not yet in our + our no-code designer, Kanvas to connect to apps not yet in our library.

    diff --git a/src/collections/integrations/dragonfly/index.mdx b/src/collections/integrations/dragonfly/index.mdx index c83016b92fd1..92f7032a7afb 100644 --- a/src/collections/integrations/dragonfly/index.mdx +++ b/src/collections/integrations/dragonfly/index.mdx @@ -21,8 +21,8 @@ featureList: [ "Improves container startup time" ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Integrates Dragonfly" howItWorksDetails: "Faster and more reliable image distribution in Kubernetes" @@ -35,5 +35,5 @@ Dragonfly is an intelligent P2P based image and file distribution system, it als 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/edp-argocd-operator/index.mdx b/src/collections/integrations/edp-argocd-operator/index.mdx index 78552066f6ed..634954524cdb 100644 --- a/src/collections/integrations/edp-argocd-operator/index.mdx +++ b/src/collections/integrations/edp-argocd-operator/index.mdx @@ -21,8 +21,8 @@ featureList: [ "Supports GitOps workflows" ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Manages ArgoCD in EDP" howItWorksDetails: "Streamlined ArgoCD setup and integration with EDP" @@ -35,5 +35,5 @@ EDP ArgoCD Operator is a Kubernetes operator for managing ArgoCD, a GitOps conti 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/edp-component-operator/index.mdx b/src/collections/integrations/edp-component-operator/index.mdx index c47fa56977c4..27ec689fc961 100644 --- a/src/collections/integrations/edp-component-operator/index.mdx +++ b/src/collections/integrations/edp-component-operator/index.mdx @@ -21,8 +21,8 @@ featureList: [ "Integrates with various EDP components" ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Manages EDP components" howItWorksDetails: "Simplified management and orchestration of EDP components in Kubernetes" @@ -35,5 +35,5 @@ EDP Component Operator is a Kubernetes operator that manages the lifecycle of co 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/edp-install/index.mdx b/src/collections/integrations/edp-install/index.mdx index 0c328615e15b..befd2bd25463 100644 --- a/src/collections/integrations/edp-install/index.mdx +++ b/src/collections/integrations/edp-install/index.mdx @@ -213,8 +213,8 @@ featureList: [ "Customizable with Helm values" ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Deploys EDP with Helm" howItWorksDetails: "Easy and standardized EDP installation" @@ -227,5 +227,5 @@ EDP Install is a Helm chart for installing the Event-Driven Platform (EDP) on Ku 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/eks/index.mdx b/src/collections/integrations/eks/index.mdx index 5d5b8858e888..7f31abda0710 100644 --- a/src/collections/integrations/eks/index.mdx +++ b/src/collections/integrations/eks/index.mdx @@ -15,8 +15,8 @@ featureList: [ "Dry run your AKS configuration changes" ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Collaborative Infrastructure as Design" howItWorksDetails: "Collaboratively manage infrastructure with your coworkers synchronously sharing the same designs." @@ -29,6 +29,6 @@ Amazon Elastic Kubernetes Service (EKS) is a managed service and certified Kuber Take advantage of Meshery's multi-cluster Kubernetes management features in your AKS environments. Design, build, and automate anything for your work by integrating apps like AKS to create visual automatedcl workflows. Choose from hundreds of ready-made design patterns or use - our no-code designer, MeshMap to connect to apps not yet in our + our no-code designer, Kanvas to connect to apps not yet in our library.

    diff --git a/src/collections/integrations/elasticsearch-operator/index.mdx b/src/collections/integrations/elasticsearch-operator/index.mdx index 3792be9779ac..b45ccab39434 100644 --- a/src/collections/integrations/elasticsearch-operator/index.mdx +++ b/src/collections/integrations/elasticsearch-operator/index.mdx @@ -75,8 +75,8 @@ featureList: [ "Real-time data analysis" ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Integrates Elastic Search" howItWorksDetails: "Powerful search and analytics capabilities for Kubernetes data" @@ -89,5 +89,5 @@ Elastic Search is a distributed search and analytics engine. 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/emissary-ingress/index.mdx b/src/collections/integrations/emissary-ingress/index.mdx index cbcdd862dbaf..e60dc7b2751f 100644 --- a/src/collections/integrations/emissary-ingress/index.mdx +++ b/src/collections/integrations/emissary-ingress/index.mdx @@ -15,8 +15,8 @@ featureList: [ "Flexible routing and traffic management" ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Manages Emissary Ingress configurations" howItWorksDetails: "Simplified API gateway management and enhanced traffic routing in Kubernetes" @@ -29,5 +29,5 @@ Emissary Ingress is an API Gateway built on Envoy Proxy. 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/envoy/index.mdx b/src/collections/integrations/envoy/index.mdx index 78ae254b72f9..fad39e322198 100644 --- a/src/collections/integrations/envoy/index.mdx +++ b/src/collections/integrations/envoy/index.mdx @@ -15,8 +15,8 @@ featureList: [ "Supports various protocols" ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Integrates Envoy configurations" howItWorksDetails: "Enhanced traffic management and observability in Kubernetes" @@ -29,5 +29,5 @@ Cloud-native high-performance edge/middle/service proxy 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/etcd-cluster-operator/index.mdx b/src/collections/integrations/etcd-cluster-operator/index.mdx index d52047d97a11..ec72737ced56 100644 --- a/src/collections/integrations/etcd-cluster-operator/index.mdx +++ b/src/collections/integrations/etcd-cluster-operator/index.mdx @@ -45,8 +45,8 @@ featureList: [ "Ensures high availability and scalability" ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Manages etcd clusters" howItWorksDetails: "Simplified etcd cluster management within Kubernetes" @@ -59,5 +59,5 @@ Distributed reliable key-value store for the most critical data of a distributed 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/external-secrets-operator/index.mdx b/src/collections/integrations/external-secrets-operator/index.mdx index b1b98899b1b4..839f94726c25 100644 --- a/src/collections/integrations/external-secrets-operator/index.mdx +++ b/src/collections/integrations/external-secrets-operator/index.mdx @@ -33,8 +33,8 @@ featureList: [ "Simplifies secret management in Kubernetes" ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Manages external secrets" howItWorksDetails: "Secure and centralized secret management for Kubernetes applications" @@ -47,5 +47,5 @@ External Secrets Operator reads information from a third-party service like AWS 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/fabedge/index.mdx b/src/collections/integrations/fabedge/index.mdx index 672e9ff6b1f3..10cf16f050eb 100644 --- a/src/collections/integrations/fabedge/index.mdx +++ b/src/collections/integrations/fabedge/index.mdx @@ -33,8 +33,8 @@ featureList: [ "Optimizes network performance for edge workloads" ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Integrates FabEdge configurations" howItWorksDetails: "Streamlined network management and improved performance for edge workloads" @@ -47,5 +47,5 @@ Secure Edge Networking Solution Based On Kubernetes 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/falco/index.mdx b/src/collections/integrations/falco/index.mdx index d53068c2ff20..b4fe91b1cf1b 100644 --- a/src/collections/integrations/falco/index.mdx +++ b/src/collections/integrations/falco/index.mdx @@ -15,8 +15,8 @@ featureList: [ "Customizable rules and alerts" ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Integrates Falco alerts" howItWorksDetails: "Enhanced security and threat detection for Kubernetes environments" @@ -29,5 +29,5 @@ Cloud Native Runtime Security 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/flagger/index.mdx b/src/collections/integrations/flagger/index.mdx index 576c89e33ee5..796f8f131f69 100644 --- a/src/collections/integrations/flagger/index.mdx +++ b/src/collections/integrations/flagger/index.mdx @@ -33,8 +33,8 @@ featureList: [ "Reduce the risk of introducing a new software version in production by gradually shifting traffic to the new version while measuring metrics like HTTP/gRPC request success rate and latency." ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Collaborative Infrastructure as Design" howItWorksDetails: "Collaboratively manage infrastructure with your coworkers synchronously sharing the same designs." @@ -47,5 +47,5 @@ Progressive delivery Kubernetes operator (Canary, A/B Testing and Blue/Green dep 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/fluent-operator/index.mdx b/src/collections/integrations/fluent-operator/index.mdx index 366a7ee4cfd8..e67c94c19fdb 100644 --- a/src/collections/integrations/fluent-operator/index.mdx +++ b/src/collections/integrations/fluent-operator/index.mdx @@ -99,8 +99,8 @@ featureList: [ "Fluentd has a flexible plugin system that allows the community to extend its functionality. " ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Collaborative Infrastructure as Design" howItWorksDetails: "Collaboratively manage infrastructure with your coworkers synchronously sharing the same designs." @@ -113,5 +113,5 @@ Fluent Operator provides great flexibility in building a logging layer based on 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/fluentbit-operator/index.mdx b/src/collections/integrations/fluentbit-operator/index.mdx index 4fd7dbe4d000..fbdc1acb70ba 100644 --- a/src/collections/integrations/fluentbit-operator/index.mdx +++ b/src/collections/integrations/fluentbit-operator/index.mdx @@ -51,8 +51,8 @@ featureList: [ "Custom Configuration: Select input/filter/output plugins via labels." ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Fluent Bit will be deployed as a DaemonSet while Fluentd will be deployed as a StatefulSet. " howItWorksDetails: "Although both Fluent Bit and Fluentd can collect, process(parse and filter) and then forward log to the final destinations, still they have strengths in different aspects. @@ -72,5 +72,5 @@ Fluent Bit is a super fast, lightweight, and highly scalable logging and metrics 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/fluentbit-skt/index.mdx b/src/collections/integrations/fluentbit-skt/index.mdx index 05e321ad7b62..6c861b038ff0 100644 --- a/src/collections/integrations/fluentbit-skt/index.mdx +++ b/src/collections/integrations/fluentbit-skt/index.mdx @@ -15,8 +15,8 @@ featureList: [ "Custom Configuration: Select input/filter/output plugins via labels." ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Fluent Bit will be deployed as a DaemonSet while Fluentd will be deployed as a StatefulSet. " howItWorksDetails: "Although both Fluent Bit and Fluentd can collect, process(parse and filter) and then forward log to the final destinations, still they have strengths in different aspects. @@ -36,5 +36,5 @@ Fluent Bit is a super fast, lightweight, and highly scalable logging and metrics 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/fluentd-operator/index.mdx b/src/collections/integrations/fluentd-operator/index.mdx index cdb236ea25b5..8d433aecddb5 100644 --- a/src/collections/integrations/fluentd-operator/index.mdx +++ b/src/collections/integrations/fluentd-operator/index.mdx @@ -21,8 +21,8 @@ featureList: [ "Custom Configuration: Select input/filter/output plugins via labels." ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Fluent Bit will be deployed as a DaemonSet while Fluentd will be deployed as a StatefulSet. " howItWorksDetails: "Although both Fluent Bit and Fluentd can collect, process(parse and filter) and then forward log to the final destinations, still they have strengths in different aspects. @@ -42,5 +42,5 @@ Fluentd: Unified Logging Layer (project under CNCF) 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/fluentd/index.mdx b/src/collections/integrations/fluentd/index.mdx index 74b750f1c596..0fe816ff0177 100644 --- a/src/collections/integrations/fluentd/index.mdx +++ b/src/collections/integrations/fluentd/index.mdx @@ -15,8 +15,8 @@ featureList: [ "Custom Configuration: Select input/filter/output plugins via labels." ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Fluent Bit will be deployed as a DaemonSet while Fluentd will be deployed as a StatefulSet. " howItWorksDetails: "Although both Fluent Bit and Fluentd can collect, process(parse and filter) and then forward log to the final destinations, still they have strengths in different aspects. @@ -36,5 +36,5 @@ Fluentd: Unified Logging Layer (project under CNCF) 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/flux/index.mdx b/src/collections/integrations/flux/index.mdx index a9841fad2898..2db70289af21 100644 --- a/src/collections/integrations/flux/index.mdx +++ b/src/collections/integrations/flux/index.mdx @@ -45,8 +45,8 @@ featureList: [ "Supports various Git providers" ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Integrates Flux configurations" howItWorksDetails: "Streamlined GitOps continuous delivery in Kubernetes" @@ -59,5 +59,5 @@ Open and extensible continuous delivery solution for Kubernetes. Powered by GitO 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/flyte-sandbox/index.mdx b/src/collections/integrations/flyte-sandbox/index.mdx index 03eede0d240f..80c11c4e7f09 100644 --- a/src/collections/integrations/flyte-sandbox/index.mdx +++ b/src/collections/integrations/flyte-sandbox/index.mdx @@ -27,8 +27,8 @@ featureList: [ "Includes example workflows and tasks" ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Integrates with Flyte Sandbox" howItWorksDetails: "Facilitates learning and experimentation with Flyte" @@ -41,5 +41,5 @@ Flyte Sandbox is a pre-configured environment for experimenting with Flyte. 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/fonio/index.mdx b/src/collections/integrations/fonio/index.mdx index f89c0af11e1d..a3b5244d46fb 100644 --- a/src/collections/integrations/fonio/index.mdx +++ b/src/collections/integrations/fonio/index.mdx @@ -15,8 +15,8 @@ featureList: [ "Supports IP address targeting mode for Network Load Balancers." ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Collaborative Infrastructure as Design" howItWorksDetails: "Elastic Load Balancing (ELB) automatically distributes incoming application traffic across multiple targets and virtual appliances in one or more Availability Zones (AZs)." @@ -29,5 +29,5 @@ Data first monitoring agent using (e)BPF, built on RedBPF 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/gatekeeper/index.mdx b/src/collections/integrations/gatekeeper/index.mdx index 93a2d32137d7..d9f70378ba35 100644 --- a/src/collections/integrations/gatekeeper/index.mdx +++ b/src/collections/integrations/gatekeeper/index.mdx @@ -93,8 +93,8 @@ featureList: [ "Ongoing synchronization of Kubernetes configuration and changes across any number of clusters." ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Collaborative Infrastructure as Design" howItWorksDetails: "Collaboratively manage infrastructure with your coworkers synchronously sharing the same designs." diff --git a/src/collections/integrations/gcp/index.mdx b/src/collections/integrations/gcp/index.mdx index 64f555e3539e..fc806d7ba33e 100644 --- a/src/collections/integrations/gcp/index.mdx +++ b/src/collections/integrations/gcp/index.mdx @@ -1311,8 +1311,8 @@ featureList: [ "Ongoing synchronization of Kubernetes configuration and changes across any number of clusters." ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Collaborative Infrastructure as Design" howItWorksDetails: "Collaboratively manage infrastructure with your coworkers synchronously sharing the same designs." @@ -1325,5 +1325,5 @@ Google Cloud Platform 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/gerrit-operator/index.mdx b/src/collections/integrations/gerrit-operator/index.mdx index 0ead1f974d37..baef183c412e 100644 --- a/src/collections/integrations/gerrit-operator/index.mdx +++ b/src/collections/integrations/gerrit-operator/index.mdx @@ -57,8 +57,8 @@ featureList: [ "Simplifies code review workflows" ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Deploys and manages Gerrit" howItWorksDetails: "Streamlined code review management within Kubernetes" diff --git a/src/collections/integrations/github-actions-runner-operator/index.mdx b/src/collections/integrations/github-actions-runner-operator/index.mdx index 2695edbd9ace..4f0459f9de7f 100644 --- a/src/collections/integrations/github-actions-runner-operator/index.mdx +++ b/src/collections/integrations/github-actions-runner-operator/index.mdx @@ -21,8 +21,8 @@ featureList: [ "Ongoing synchronization of Kubernetes configuration and changes across any number of clusters." ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Collaborative Infrastructure as Design" howItWorksDetails: "Collaboratively manage infrastructure with your coworkers synchronously sharing the same designs." @@ -35,5 +35,5 @@ GitOps your infrastructure with Meshery and GitHub 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/github-actions-runners/index.mdx b/src/collections/integrations/github-actions-runners/index.mdx index b758884cac63..2d2a5448c8ad 100644 --- a/src/collections/integrations/github-actions-runners/index.mdx +++ b/src/collections/integrations/github-actions-runners/index.mdx @@ -45,8 +45,8 @@ featureList: [ "Ongoing synchronization of Kubernetes configuration and changes across any number of clusters." ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Collaborative Infrastructure as Design" howItWorksDetails: "Collaboratively manage infrastructure with your coworkers synchronously sharing the same designs." @@ -59,5 +59,5 @@ GitOps your infrastructure with Meshery and GitHub 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/github/index.mdx b/src/collections/integrations/github/index.mdx index 47a1490e36da..6a0a30fa05d9 100644 --- a/src/collections/integrations/github/index.mdx +++ b/src/collections/integrations/github/index.mdx @@ -15,8 +15,8 @@ featureList: [ "Use Meshery GitHub Actions" ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Visual GitOps" howItWorksDetails: "Collaboratively manage infrastructure with your coworkers synchronously sharing the same designs." diff --git a/src/collections/integrations/gitlab-controller/index.mdx b/src/collections/integrations/gitlab-controller/index.mdx index 7af39be77123..26c7b77809ac 100644 --- a/src/collections/integrations/gitlab-controller/index.mdx +++ b/src/collections/integrations/gitlab-controller/index.mdx @@ -15,8 +15,8 @@ featureList: [ "Ongoing synchronization of Kubernetes configuration and changes across any number of clusters." ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Collaborative Infrastructure as Design" howItWorksDetails: "Collaboratively manage infrastructure with your coworkers synchronously sharing the same designs." @@ -29,5 +29,5 @@ GitOps your infrastructure with Meshery and GitHub 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/gitlab-runner-operator/index.mdx b/src/collections/integrations/gitlab-runner-operator/index.mdx index 63c41b16a7bf..256e54b6968a 100644 --- a/src/collections/integrations/gitlab-runner-operator/index.mdx +++ b/src/collections/integrations/gitlab-runner-operator/index.mdx @@ -21,8 +21,8 @@ featureList: [ "Ongoing synchronization of Kubernetes configuration and changes across any number of clusters." ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Collaborative Infrastructure as Design" howItWorksDetails: "Collaboratively manage infrastructure with your coworkers synchronously sharing the same designs." @@ -35,5 +35,5 @@ GitOps your infrastructure with Meshery and GitLab 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/gitlab/index.mdx b/src/collections/integrations/gitlab/index.mdx index 17f3c47445a1..c736286a83fd 100644 --- a/src/collections/integrations/gitlab/index.mdx +++ b/src/collections/integrations/gitlab/index.mdx @@ -87,8 +87,8 @@ featureList: [ "Ongoing synchronization of Kubernetes configuration and changes across any number of clusters." ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Collaborative Infrastructure as Design" howItWorksDetails: "Collaboratively manage infrastructure with your coworkers synchronously sharing the same designs." @@ -101,5 +101,5 @@ Enables Kubernetes applications to access cloud resources securely with Azure Ac 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/grafana-agent-operator/index.mdx b/src/collections/integrations/grafana-agent-operator/index.mdx index 11f12705f973..2e61b1b9db73 100644 --- a/src/collections/integrations/grafana-agent-operator/index.mdx +++ b/src/collections/integrations/grafana-agent-operator/index.mdx @@ -63,8 +63,8 @@ featureList: [ "Integrate your boards and panels and new insights and metrics" ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Collaborative Infrastructure as Design" howItWorksDetails: "Collaboratively manage infrastructure with your coworkers synchronously sharing the same designs." @@ -78,5 +78,5 @@ Use Meshery to customize the flexible display of your dashboards in context of y 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/grafana-agent/index.mdx b/src/collections/integrations/grafana-agent/index.mdx index be2ebbfea434..c9fde8775a17 100644 --- a/src/collections/integrations/grafana-agent/index.mdx +++ b/src/collections/integrations/grafana-agent/index.mdx @@ -21,8 +21,8 @@ featureList: [ "Integrate your boards and panels and new insights and metrics" ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Collaborative Infrastructure as Design" howItWorksDetails: "Collaboratively manage infrastructure with your coworkers synchronously sharing the same designs." @@ -35,5 +35,5 @@ Query, visualize, alert on, and understand your data with Grafana and Meshery. U 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/grafana-operator/index.mdx b/src/collections/integrations/grafana-operator/index.mdx index 979e82c6bf06..233681c654d8 100644 --- a/src/collections/integrations/grafana-operator/index.mdx +++ b/src/collections/integrations/grafana-operator/index.mdx @@ -87,8 +87,8 @@ featureList: [ "Integrate your boards and panels and new insights and metrics" ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Collaborative Infrastructure as Design" howItWorksDetails: "Collaboratively manage infrastructure with your coworkers synchronously sharing the same designs." @@ -102,5 +102,5 @@ Use Meshery to customize the flexible display of your dashboards in context of y 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/grafana-ui-server/index.mdx b/src/collections/integrations/grafana-ui-server/index.mdx index 4b60082efae0..2db92f661bb6 100644 --- a/src/collections/integrations/grafana-ui-server/index.mdx +++ b/src/collections/integrations/grafana-ui-server/index.mdx @@ -21,8 +21,8 @@ featureList: [ "Integrate your boards and panels and new insights and metrics" ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Collaborative Infrastructure as Design" howItWorksDetails: "Collaboratively manage infrastructure with your coworkers synchronously sharing the same designs." @@ -36,5 +36,5 @@ Use Meshery to customize the flexible display of your dashboards in context of y 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/harbor-operator/index.mdx b/src/collections/integrations/harbor-operator/index.mdx index 5cfae64f4799..b24a0a6efce4 100644 --- a/src/collections/integrations/harbor-operator/index.mdx +++ b/src/collections/integrations/harbor-operator/index.mdx @@ -51,8 +51,8 @@ featureList: [ "Replication across many registries, including Harbor" ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Collaborative Infrastructure as Design" howItWorksDetails: "Collaboratively manage infrastructure with your coworkers synchronously sharing the same designs." @@ -65,5 +65,5 @@ Harbor is an open source registry that secures artifacts with policies and role- 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/helm-controller/index.mdx b/src/collections/integrations/helm-controller/index.mdx index 66a41becf810..b7045f4c4baf 100644 --- a/src/collections/integrations/helm-controller/index.mdx +++ b/src/collections/integrations/helm-controller/index.mdx @@ -33,8 +33,8 @@ featureList: [ "Integrates with GitOps workflows" ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Manages Helm releases" howItWorksDetails: "Streamlined Helm chart management and automation in Kubernetes" @@ -47,7 +47,7 @@ The Kubernetes Package Manager The Kubernetes Package Manager

    - Selectively deploy Meshery components with Helm charts and sub-charts. Use parameter overrides to customize your Meshery deployment. Design, test, and manage configuration of all your cloud infrastructure and containerized applications as a visual topology. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, create and deploy your own cloud native infrastructure designs. + Selectively deploy Meshery components with Helm charts and sub-charts. Use parameter overrides to customize your Meshery deployment. Design, test, and manage configuration of all your cloud infrastructure and containerized applications as a visual topology. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, Kanvas, create and deploy your own cloud native infrastructure designs.

    Import all of your existing Helm Chart into Meshery. diff --git a/src/collections/integrations/hexa/index.mdx b/src/collections/integrations/hexa/index.mdx index 9c26d36f77e0..4dae5ca5fcb4 100644 --- a/src/collections/integrations/hexa/index.mdx +++ b/src/collections/integrations/hexa/index.mdx @@ -15,8 +15,8 @@ featureList: [ "Provides self-service capabilities for developers" ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Integrates Hexa platforms" howItWorksDetails: "Faster and easier development and deployment of applications in Kubernetes" @@ -29,5 +29,5 @@ Hexa Policy Orchestrator enables you to manage all of your access policies consi 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/hybridnet/index.mdx b/src/collections/integrations/hybridnet/index.mdx index 7ad4a3675719..a1e63be55091 100644 --- a/src/collections/integrations/hybridnet/index.mdx +++ b/src/collections/integrations/hybridnet/index.mdx @@ -111,8 +111,8 @@ featureList: [ "Multi-cluster networking" ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Integrates Hybridnet configurations" howItWorksDetails: "Streamlined network management and flexibility in Kubernetes" @@ -127,5 +127,5 @@ hybridnet is an open source container networking solution designed for hybrid cl 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/identity-manager/index.mdx b/src/collections/integrations/identity-manager/index.mdx index ff021d872ae9..96c6ef756342 100644 --- a/src/collections/integrations/identity-manager/index.mdx +++ b/src/collections/integrations/identity-manager/index.mdx @@ -21,8 +21,8 @@ featureList: [ "Role-based access control (RBAC)" ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Integrates with Identity Manager" howItWorksDetails: "Centralized identity and access management for Kubernetes clusters" @@ -35,5 +35,5 @@ Identity Manager is a component of Red Hat Advanced Cluster Management for manag 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/in-toto/index.mdx b/src/collections/integrations/in-toto/index.mdx index c42ccb357d94..6cf7aadeeadd 100644 --- a/src/collections/integrations/in-toto/index.mdx +++ b/src/collections/integrations/in-toto/index.mdx @@ -15,8 +15,8 @@ featureList: [ "Integrates with various build tools and platforms" ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Integrates in-toto attestations" howItWorksDetails: "Enhanced security and trust in software supply chains in Kubernetes" @@ -29,5 +29,5 @@ In-toto is a framework to secure the integrity of software supply chains 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/inclavare-containers/index.mdx b/src/collections/integrations/inclavare-containers/index.mdx index 7235d39df452..7b8b6acee0ff 100644 --- a/src/collections/integrations/inclavare-containers/index.mdx +++ b/src/collections/integrations/inclavare-containers/index.mdx @@ -15,8 +15,8 @@ featureList: [ "Enhances container security" ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Integrates Inclavare Containers" howItWorksDetails: "Confidential computing for sensitive applications in Kubernetes" @@ -29,5 +29,5 @@ A novel container runtime, aka confidential container, for cloud-native confiden 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/ingress-azure/index.mdx b/src/collections/integrations/ingress-azure/index.mdx index 992c3e302f16..5c6f04c04c48 100644 --- a/src/collections/integrations/ingress-azure/index.mdx +++ b/src/collections/integrations/ingress-azure/index.mdx @@ -27,8 +27,8 @@ featureList: [ "Integration with Azure services" ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Manages Ingress Azure configuration" howItWorksDetails: "Simplified ingress management for Kubernetes on Azure" @@ -41,5 +41,5 @@ Ingress Azure is a Kubernetes ingress controller for Microsoft Azure. 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/inlets-operator/index.mdx b/src/collections/integrations/inlets-operator/index.mdx index f8be87241651..1a80f73cba87 100644 --- a/src/collections/integrations/inlets-operator/index.mdx +++ b/src/collections/integrations/inlets-operator/index.mdx @@ -21,8 +21,8 @@ featureList: [ "Simplifies remote access to Kubernetes services" ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Manages inlets tunnels" howItWorksDetails: "Easy and secure remote access to Kubernetes services" @@ -35,5 +35,5 @@ inlets Operator is a Kubernetes operator for managing inlets, a reverse proxy an 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/intel-device-plugins-operator/index.mdx b/src/collections/integrations/intel-device-plugins-operator/index.mdx index c37b4701986f..3d4f3fe6bfdb 100644 --- a/src/collections/integrations/intel-device-plugins-operator/index.mdx +++ b/src/collections/integrations/intel-device-plugins-operator/index.mdx @@ -69,8 +69,8 @@ featureList: [ "Ongoing synchronization of Kubernetes configuration and changes across any number of clusters." ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Collaborative Infrastructure as Design" howItWorksDetails: "Collaboratively manage infrastructure with your coworkers synchronously sharing the same designs." @@ -83,5 +83,5 @@ A Kubernetes custom controller whose goal is to serve the installation and lifec 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/istio-base/index.mdx b/src/collections/integrations/istio-base/index.mdx index a14a2877cb55..4869f756c21d 100644 --- a/src/collections/integrations/istio-base/index.mdx +++ b/src/collections/integrations/istio-base/index.mdx @@ -105,8 +105,8 @@ featureList: [ "Design Istio Virtual Services" ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Collaborative Infrastructure as Design" howItWorksDetails: "Collaboratively manage infrastructure with your coworkers synchronously sharing the same designs." @@ -119,5 +119,5 @@ Connect, secure, control, and observe services. 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/istio-operator/index.mdx b/src/collections/integrations/istio-operator/index.mdx index fee02848d3f3..524632bc98db 100644 --- a/src/collections/integrations/istio-operator/index.mdx +++ b/src/collections/integrations/istio-operator/index.mdx @@ -45,8 +45,8 @@ featureList: [ "Design Istio Virtual Services" ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Collaborative Infrastructure as Design" howItWorksDetails: "Collaboratively manage infrastructure with your coworkers synchronously sharing the same designs." @@ -59,5 +59,5 @@ Connect, secure, control, and observe services. 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/istio-ratelimit-operator/index.mdx b/src/collections/integrations/istio-ratelimit-operator/index.mdx index b7f7dd6b902d..00331ef2b614 100644 --- a/src/collections/integrations/istio-ratelimit-operator/index.mdx +++ b/src/collections/integrations/istio-ratelimit-operator/index.mdx @@ -45,8 +45,8 @@ featureList: [ "Design Istio Virtual Services" ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Collaborative Infrastructure as Design" howItWorksDetails: "Collaboratively manage infrastructure with your coworkers synchronously sharing the same designs." @@ -59,5 +59,5 @@ Connect, secure, control, and observe services. 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/jaeger-operator/index.mdx b/src/collections/integrations/jaeger-operator/index.mdx index 7f79b3a0527b..db23f0b83925 100644 --- a/src/collections/integrations/jaeger-operator/index.mdx +++ b/src/collections/integrations/jaeger-operator/index.mdx @@ -21,8 +21,8 @@ featureList: [ "Simplifies Jaeger setup and maintenance" ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Deploys and manages Jaeger" howItWorksDetails: "Streamlined Jaeger management within Kubernetes" @@ -35,5 +35,5 @@ CNCF Jaeger, a Distributed Tracing Platform 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/jaeger/index.mdx b/src/collections/integrations/jaeger/index.mdx index a7b50b410ae7..0990fd9fe98f 100644 --- a/src/collections/integrations/jaeger/index.mdx +++ b/src/collections/integrations/jaeger/index.mdx @@ -15,8 +15,8 @@ featureList: [ "Provides root cause analysis" ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Integrates Jaeger traces" howItWorksDetails: "Enhanced observability and troubleshooting of distributed systems in Kubernetes" @@ -29,5 +29,5 @@ CNCF Jaeger, a Distributed Tracing Platform 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/jenkins-operator/index.mdx b/src/collections/integrations/jenkins-operator/index.mdx index 53e438bb5c9c..588aa77e1862 100644 --- a/src/collections/integrations/jenkins-operator/index.mdx +++ b/src/collections/integrations/jenkins-operator/index.mdx @@ -81,8 +81,8 @@ featureList: [ "Integrates with Kubernetes resources" ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Deploys and manages Jenkins" howItWorksDetails: "Streamlined Jenkins management within Kubernetes" @@ -95,5 +95,5 @@ CNCF Jaeger, a Distributed Tracing Platform 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/jira-service-desk-operator/index.mdx b/src/collections/integrations/jira-service-desk-operator/index.mdx index d7ae7198a3c9..a2d2d3ad3f1e 100644 --- a/src/collections/integrations/jira-service-desk-operator/index.mdx +++ b/src/collections/integrations/jira-service-desk-operator/index.mdx @@ -27,8 +27,8 @@ featureList: [ "Manage Projects - Manage customer and organization for projects." ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Configure and customize Jira Projects and Issues" howItWorksDetails: "Automate the process of setting up the Jira Service Desk (JSD) operator configuration of alertmanager in a Kubernetes native way. " @@ -41,5 +41,5 @@ Plan, track, and manage your agile and software development projects in Jira. Cu 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/jitsi/index.mdx b/src/collections/integrations/jitsi/index.mdx index 80c4233cdae1..b6eba5858b18 100644 --- a/src/collections/integrations/jitsi/index.mdx +++ b/src/collections/integrations/jitsi/index.mdx @@ -135,8 +135,8 @@ featureList: [ "Scalable architecture" ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Integrates Jitsi" howItWorksDetails: "Secure and scalable video conferencing in Kubernetes" @@ -149,5 +149,5 @@ Jitsi is a set of open-source projects that allows you to easily build and deplo 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/k3s/index.mdx b/src/collections/integrations/k3s/index.mdx index 610c1f49eecd..2f6085545af6 100644 --- a/src/collections/integrations/k3s/index.mdx +++ b/src/collections/integrations/k3s/index.mdx @@ -15,8 +15,8 @@ featureList: [ "Easy to install and manage" ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Integrates with K3s clusters" howItWorksDetails: "Simplified K3s management and integration with other Kubernetes tools" @@ -29,5 +29,5 @@ Lightweight Kubernetes 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/k6-operator/index.mdx b/src/collections/integrations/k6-operator/index.mdx index ff098a8e95a0..21e0569d3815 100644 --- a/src/collections/integrations/k6-operator/index.mdx +++ b/src/collections/integrations/k6-operator/index.mdx @@ -16,8 +16,8 @@ featureList: [ " ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "k6 integrates seamlessly with CI/CD and automation tools, enabling engineering teams to automate performance testing as part of their development and release cycle. " @@ -32,5 +32,5 @@ Grafana k6 is an open-source, developer-friendly, and extensible load testing to 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/k8gb/index.mdx b/src/collections/integrations/k8gb/index.mdx index 494c5112a5d1..f0b56c868b5b 100644 --- a/src/collections/integrations/k8gb/index.mdx +++ b/src/collections/integrations/k8gb/index.mdx @@ -27,8 +27,8 @@ featureList: [ "Generates reports and recommendations" ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Integrates K8GB audits" howItWorksDetails: "Enhanced security and compliance for Kubernetes clusters" @@ -41,5 +41,5 @@ A cloud native Kubernetes Global Balancer 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/k8s-config-connector/index.mdx b/src/collections/integrations/k8s-config-connector/index.mdx index 9b1ed006047a..2a33c99b7d43 100644 --- a/src/collections/integrations/k8s-config-connector/index.mdx +++ b/src/collections/integrations/k8s-config-connector/index.mdx @@ -2079,8 +2079,8 @@ featureList: [ "Offers various Kubernetes solutions" ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Integrates GCP services" howItWorksDetails: "Seamless integration of Kubernetes with GCP services" diff --git a/src/collections/integrations/k8svault-controller/index.mdx b/src/collections/integrations/k8svault-controller/index.mdx index 7b7a6e674d7e..b080db935e53 100644 --- a/src/collections/integrations/k8svault-controller/index.mdx +++ b/src/collections/integrations/k8svault-controller/index.mdx @@ -27,8 +27,8 @@ featureList: [ "Simplified management of secrets for applications running on Kubernetes" ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Collaborative Infrastructure as Design" howItWorksDetails: "Collaboratively manage infrastructure with your coworkers synchronously sharing the same designs." @@ -41,5 +41,5 @@ K8s Vault Controller is an operator for managing HashiCorp Vault, a secrets mana 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/kanister-operator/index.mdx b/src/collections/integrations/kanister-operator/index.mdx index 64a6ef84c8a5..bc5126507991 100644 --- a/src/collections/integrations/kanister-operator/index.mdx +++ b/src/collections/integrations/kanister-operator/index.mdx @@ -39,8 +39,8 @@ featureList: [ "Keep application images unchanged by including required tools as a sidecar container or as a separate pod." ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Collaborative Infrastructure as Design" howItWorksDetails: "Collaboratively manage infrastructure with your coworkers synchronously sharing the same designs." @@ -53,5 +53,5 @@ Kanister is a framework that enables application-level data management on Kubern 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/karmada/index.mdx b/src/collections/integrations/karmada/index.mdx index 138b0e66a86c..1fb20e891d25 100644 --- a/src/collections/integrations/karmada/index.mdx +++ b/src/collections/integrations/karmada/index.mdx @@ -21,8 +21,8 @@ featureList: [ "Centralized policy and configuration management" ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Integrates Karmada clusters" howItWorksDetails: "Streamlined multi-cluster management and governance" @@ -35,5 +35,5 @@ Open, Multi-Cloud, Multi-Cluster Kubernetes Orchestration 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/karpenter/index.mdx b/src/collections/integrations/karpenter/index.mdx index 0ec858f56a39..faa41dba007e 100644 --- a/src/collections/integrations/karpenter/index.mdx +++ b/src/collections/integrations/karpenter/index.mdx @@ -27,8 +27,8 @@ featureList: [ "Provisioning nodes that meet the requirements of the pods" ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Using Meshery and Karpenter, once your Kubernetes cluster and the Karpenter controller are up and running" howItWorksDetails: "Set up provisioners: By applying a provisioner to Karpenter, you can configure constraints on node provisioning and set timeout values for node expiry or Kubelet configuration values. @@ -43,5 +43,5 @@ Karpenter is an open-source node provisioning project built for Kubernetes. Addi 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/katib/index.mdx b/src/collections/integrations/katib/index.mdx index ad29c6f291f7..d84a2e8b7fcd 100644 --- a/src/collections/integrations/katib/index.mdx +++ b/src/collections/integrations/katib/index.mdx @@ -33,8 +33,8 @@ featureList: [ "Integrates with Kubeflow Pipelines" ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Integrates Katib experiments" howItWorksDetails: "Efficient hyperparameter optimization for machine learning in Kubernetes" @@ -47,5 +47,5 @@ Katib is a Kubernetes-native project for automated machine learning (AutoML). Ka 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/keda-http-scaler/index.mdx b/src/collections/integrations/keda-http-scaler/index.mdx index 6cedbbd42736..bdedc286bbf6 100644 --- a/src/collections/integrations/keda-http-scaler/index.mdx +++ b/src/collections/integrations/keda-http-scaler/index.mdx @@ -21,8 +21,8 @@ featureList: [ "Supports various HTTP metrics" ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Scales deployments with KEDA HTTP Scaler" howItWorksDetails: "Automated scaling of Kubernetes applications based on HTTP traffic" @@ -35,5 +35,5 @@ The KEDA HTTP Add-on allows Kubernetes users to automatically scale their HTTP s 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/keda/index.mdx b/src/collections/integrations/keda/index.mdx index 5274626efadf..9f8e170df527 100644 --- a/src/collections/integrations/keda/index.mdx +++ b/src/collections/integrations/keda/index.mdx @@ -51,8 +51,8 @@ featureList: [ "Simplifies scaling beyond CPU and memory" ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Integrates with KEDA scalers" howItWorksDetails: "Event-driven autoscaling of Kubernetes applications" @@ -65,5 +65,5 @@ published: TRUE 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/keycloak-operator/index.mdx b/src/collections/integrations/keycloak-operator/index.mdx index f5cb1d494b15..821680dfa96f 100644 --- a/src/collections/integrations/keycloak-operator/index.mdx +++ b/src/collections/integrations/keycloak-operator/index.mdx @@ -111,8 +111,8 @@ featureList: [ "Integrates with Kubernetes resources" ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Deploys and manages Keycloak" howItWorksDetails: "Streamlined Keycloak management within Kubernetes" @@ -125,5 +125,5 @@ Open Source Identity and Access Management For Modern Applications and Services 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/keylime/index.mdx b/src/collections/integrations/keylime/index.mdx index b80cfb3a1e0e..55201b0fbc06 100644 --- a/src/collections/integrations/keylime/index.mdx +++ b/src/collections/integrations/keylime/index.mdx @@ -15,8 +15,8 @@ featureList: [ "Protects against unauthorized modifications" ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Remote attestation of hardware and software" howItWorksDetails: "Integrates Keylime attestation" @@ -29,5 +29,5 @@ CNCF is an open source software foundation that hosts and nurtures projects like 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/kiali-operator/index.mdx b/src/collections/integrations/kiali-operator/index.mdx index f9ea35765728..b65555e90de8 100644 --- a/src/collections/integrations/kiali-operator/index.mdx +++ b/src/collections/integrations/kiali-operator/index.mdx @@ -21,8 +21,8 @@ featureList: [ "Provides visualizations for Istio service meshes" ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Simplifies Istio troubleshooting and monitoring" howItWorksDetails: "Integrates Kiali visualizations" @@ -35,5 +35,5 @@ Kiali project, observability for the Istio service mesh 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/knative-serving/index.mdx b/src/collections/integrations/knative-serving/index.mdx index 89f42d832328..2234edc9306b 100644 --- a/src/collections/integrations/knative-serving/index.mdx +++ b/src/collections/integrations/knative-serving/index.mdx @@ -87,8 +87,8 @@ featureList: [ "Supports various traffic patterns" ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Manages Knative Serving" howItWorksDetails: "Simplified serverless application deployment and scaling in Kubernetes" @@ -101,5 +101,5 @@ Knative is a developer-focused serverless application layer which is a great com 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/knative/index.mdx b/src/collections/integrations/knative/index.mdx index e9c68caa6f6a..4fa98ed45d06 100644 --- a/src/collections/integrations/knative/index.mdx +++ b/src/collections/integrations/knative/index.mdx @@ -81,8 +81,8 @@ featureList: [ "Integrates with Kubernetes resources" ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Integrates Knative components" howItWorksDetails: "Streamlined serverless development on Kubernetes" @@ -95,5 +95,5 @@ Knative is a developer-focused serverless application layer which is a great com 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/kommander/index.mdx b/src/collections/integrations/kommander/index.mdx index 6585e0de30b2..ecbfef2164d0 100644 --- a/src/collections/integrations/kommander/index.mdx +++ b/src/collections/integrations/kommander/index.mdx @@ -279,8 +279,8 @@ featureList: [ "Centralized policy and configuration management" ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Integrates Kommander clusters" howItWorksDetails: "Streamlined multi-cluster management and governance" @@ -293,5 +293,5 @@ Kommander delivers centralized observability, federated management, and organiza 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/kong-mesh/index.mdx b/src/collections/integrations/kong-mesh/index.mdx index 576743e81ee2..d1070e41665b 100644 --- a/src/collections/integrations/kong-mesh/index.mdx +++ b/src/collections/integrations/kong-mesh/index.mdx @@ -333,8 +333,8 @@ featureList: [ "Configure Mesh natively using an API, web UI, or with declarative configuration to manage updates via your CI/CD pipelines." ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Collaborative Infrastructure as Design" howItWorksDetails: "Collaboratively manage infrastructure with your coworkers synchronously sharing the same designs." @@ -347,5 +347,5 @@ Enterprise service mesh based on Kuma for multi-cloud and multi-cluster on both 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/kong/index.mdx b/src/collections/integrations/kong/index.mdx index 92fba30f16b4..b9664dca0e22 100644 --- a/src/collections/integrations/kong/index.mdx +++ b/src/collections/integrations/kong/index.mdx @@ -87,8 +87,8 @@ featureList: [ "Sophisticated deployment models like Declarative Databaseless Deployment and Hybrid Deployment (control plane/data plane separation) without any vendor lock-in." ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Collaborative Infrastructure as Design" howItWorksDetails: "Collaboratively manage infrastructure with your coworkers synchronously sharing the same designs." diff --git a/src/collections/integrations/kube-arangodb/index.mdx b/src/collections/integrations/kube-arangodb/index.mdx index c1eecd11b451..7a62b6cfa3ad 100644 --- a/src/collections/integrations/kube-arangodb/index.mdx +++ b/src/collections/integrations/kube-arangodb/index.mdx @@ -99,8 +99,8 @@ featureList: [ "Backup and restore functionality for ArangoDB" ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Collaborative Infrastructure as Design" howItWorksDetails: "Collaboratively manage infrastructure with your coworkers synchronously sharing the same designs." @@ -113,5 +113,5 @@ ArangoDB Kubernetes Operator is an operator for managing ArangoDB, a multi-model 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/kube-prometheus-stack/index.mdx b/src/collections/integrations/kube-prometheus-stack/index.mdx index 4c4d148a2bee..98c566c5229e 100644 --- a/src/collections/integrations/kube-prometheus-stack/index.mdx +++ b/src/collections/integrations/kube-prometheus-stack/index.mdx @@ -93,8 +93,8 @@ featureList: [ "Customizable dashboards and alerting" ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Deploys Kube Prometheus Stack with Helm" howItWorksDetails: "Comprehensive monitoring and observability for Kubernetes" @@ -107,5 +107,5 @@ Prometheus is an open-source systems monitoring and alerting toolkit 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/kube-prometheus/index.mdx b/src/collections/integrations/kube-prometheus/index.mdx index 6f2b0caad88b..9df4bdb4aeb8 100644 --- a/src/collections/integrations/kube-prometheus/index.mdx +++ b/src/collections/integrations/kube-prometheus/index.mdx @@ -75,8 +75,8 @@ featureList: [ "Customizable with Helm values" ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Deploys Kube Prometheus with Helm" howItWorksDetails: "Streamlined Prometheus setup for monitoring Kubernetes" @@ -89,5 +89,5 @@ Prometheus is an open-source systems monitoring and alerting toolkit 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/kube-rs/index.mdx b/src/collections/integrations/kube-rs/index.mdx index 9e1c2a3fd93c..fdf29eb79978 100644 --- a/src/collections/integrations/kube-rs/index.mdx +++ b/src/collections/integrations/kube-rs/index.mdx @@ -15,8 +15,8 @@ featureList: [ "Offers type-safe and idiomatic Rust APIs" ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Integrates kube-rs client library" howItWorksDetails: "Streamlined development of Kubernetes tools in Rust" @@ -29,5 +29,5 @@ A Rust client for Kubernetes in the style of a more generic client-go, a runtime 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/kube-ui-server/index.mdx b/src/collections/integrations/kube-ui-server/index.mdx index 5e1d40ad97cd..215d0c95cd01 100644 --- a/src/collections/integrations/kube-ui-server/index.mdx +++ b/src/collections/integrations/kube-ui-server/index.mdx @@ -81,8 +81,8 @@ featureList: [ "Identity Server is a Kubernetes extended apiserver (EAS). As an EAS, it has access to the user who is making an api call to the whoami server." ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Collaborative Infrastructure as Design" howItWorksDetails: "Collaboratively manage infrastructure with your coworkers synchronously sharing the same designs." @@ -95,5 +95,5 @@ Kubernetes UI Server is an extended api server for Kubernetes. This exposes a nu 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/kubedb-catalog/index.mdx b/src/collections/integrations/kubedb-catalog/index.mdx index d0a67519e8dd..a1cc829829aa 100644 --- a/src/collections/integrations/kubedb-catalog/index.mdx +++ b/src/collections/integrations/kubedb-catalog/index.mdx @@ -153,8 +153,8 @@ featureList: [ "KubeDB uses Persistent Volume Claims (PVC) to dynamically provision disks for database instances. Using appropriately defined StorageClasses, KubeDB provisioned database instances are designed to scale from small development workloads up to performance-intensive workloads on private and public cloud environments." ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Collaborative Infrastructure as Design" howItWorksDetails: "Collaboratively manage infrastructure with your coworkers synchronously sharing the same designs." @@ -167,5 +167,5 @@ KubeDB simplifies Provision, Upgrade, Scaling, Volume Expansion, Monitor, Backup 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/kubedb-crds/index.mdx b/src/collections/integrations/kubedb-crds/index.mdx index 96d9bb277084..c146aa799bc5 100644 --- a/src/collections/integrations/kubedb-crds/index.mdx +++ b/src/collections/integrations/kubedb-crds/index.mdx @@ -657,8 +657,8 @@ featureList: [ "KubeDB uses Persistent Volume Claims (PVC) to dynamically provision disks for database instances. Using appropriately defined StorageClasses, KubeDB provisioned database instances are designed to scale from small development workloads up to performance-intensive workloads on private and public cloud environments." ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Collaborative Infrastructure as Design" howItWorksDetails: "Collaboratively manage infrastructure with your coworkers synchronously sharing the same designs." @@ -671,5 +671,5 @@ KubeDB simplifies Provision, Upgrade, Scaling, Volume Expansion, Monitor, Backup 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/kubedb-grafana-dashboards/index.mdx b/src/collections/integrations/kubedb-grafana-dashboards/index.mdx index 9f7e027f5a6b..74622f3a1d4f 100644 --- a/src/collections/integrations/kubedb-grafana-dashboards/index.mdx +++ b/src/collections/integrations/kubedb-grafana-dashboards/index.mdx @@ -21,8 +21,8 @@ featureList: [ "KubeDB uses Persistent Volume Claims (PVC) to dynamically provision disks for database instances. Using appropriately defined StorageClasses, KubeDB provisioned database instances are designed to scale from small development workloads up to performance-intensive workloads on private and public cloud environments." ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Collaborative Infrastructure as Design" howItWorksDetails: "Collaboratively manage infrastructure with your coworkers synchronously sharing the same designs." @@ -35,5 +35,5 @@ KubeDB simplifies Provision, Upgrade, Scaling, Volume Expansion, Monitor, Backup 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/kubedb-metrics/index.mdx b/src/collections/integrations/kubedb-metrics/index.mdx index a94cb57a1cc2..fe8c601c473e 100644 --- a/src/collections/integrations/kubedb-metrics/index.mdx +++ b/src/collections/integrations/kubedb-metrics/index.mdx @@ -21,8 +21,8 @@ featureList: [ "KubeDB uses Persistent Volume Claims (PVC) to dynamically provision disks for database instances. Using appropriately defined StorageClasses, KubeDB provisioned database instances are designed to scale from small development workloads up to performance-intensive workloads on private and public cloud environments." ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Collaborative Infrastructure as Design" howItWorksDetails: "Collaboratively manage infrastructure with your coworkers synchronously sharing the same designs." @@ -35,5 +35,5 @@ KubeDB simplifies Provision, Upgrade, Scaling, Volume Expansion, Monitor, Backup 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/kubedb-ops-manager/index.mdx b/src/collections/integrations/kubedb-ops-manager/index.mdx index a626c5550a00..9833953db0b3 100644 --- a/src/collections/integrations/kubedb-ops-manager/index.mdx +++ b/src/collections/integrations/kubedb-ops-manager/index.mdx @@ -21,8 +21,8 @@ featureList: [ "KubeDB uses Persistent Volume Claims (PVC) to dynamically provision disks for database instances. Using appropriately defined StorageClasses, KubeDB provisioned database instances are designed to scale from small development workloads up to performance-intensive workloads on private and public cloud environments." ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Collaborative Infrastructure as Design" howItWorksDetails: "Collaboratively manage infrastructure with your coworkers synchronously sharing the same designs." @@ -35,5 +35,5 @@ KubeDB simplifies Provision, Upgrade, Scaling, Volume Expansion, Monitor, Backup 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/kubedb-opscenter/index.mdx b/src/collections/integrations/kubedb-opscenter/index.mdx index 9c583b858077..51a1d53f0cc2 100644 --- a/src/collections/integrations/kubedb-opscenter/index.mdx +++ b/src/collections/integrations/kubedb-opscenter/index.mdx @@ -159,8 +159,8 @@ featureList: [ "KubeDB uses Persistent Volume Claims (PVC) to dynamically provision disks for database instances. Using appropriately defined StorageClasses, KubeDB provisioned database instances are designed to scale from small development workloads up to performance-intensive workloads on private and public cloud environments." ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Collaborative Infrastructure as Design" howItWorksDetails: "Collaboratively manage infrastructure with your coworkers synchronously sharing the same designs." @@ -173,5 +173,5 @@ KubeDB simplifies Provision, Upgrade, Scaling, Volume Expansion, Monitor, Backup 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/kubedb-ui-server/index.mdx b/src/collections/integrations/kubedb-ui-server/index.mdx index 44d3cbf765aa..bdd6818703bf 100644 --- a/src/collections/integrations/kubedb-ui-server/index.mdx +++ b/src/collections/integrations/kubedb-ui-server/index.mdx @@ -87,8 +87,8 @@ featureList: [ "KubeDB uses Persistent Volume Claims (PVC) to dynamically provision disks for database instances. Using appropriately defined StorageClasses, KubeDB provisioned database instances are designed to scale from small development workloads up to performance-intensive workloads on private and public cloud environments." ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Collaborative Infrastructure as Design" howItWorksDetails: "Collaboratively manage infrastructure with your coworkers synchronously sharing the same designs." @@ -101,5 +101,5 @@ KubeDB simplifies Provision, Upgrade, Scaling, Volume Expansion, Monitor, Backup 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/kubedb/index.mdx b/src/collections/integrations/kubedb/index.mdx index e2d8c074df88..2cc710f1d650 100644 --- a/src/collections/integrations/kubedb/index.mdx +++ b/src/collections/integrations/kubedb/index.mdx @@ -225,8 +225,8 @@ featureList: [ "KubeDB uses Persistent Volume Claims (PVC) to dynamically provision disks for database instances. Using appropriately defined StorageClasses, KubeDB provisioned database instances are designed to scale from small development workloads up to performance-intensive workloads on private and public cloud environments." ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Collaborative Infrastructure as Design" howItWorksDetails: "Collaboratively manage infrastructure with your coworkers synchronously sharing the same designs." @@ -239,5 +239,5 @@ KubeDB simplifies Provision, Upgrade, Scaling, Volume Expansion, Monitor, Backup 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/kubedl/index.mdx b/src/collections/integrations/kubedl/index.mdx index 708c90949e67..547c7ddcf57b 100644 --- a/src/collections/integrations/kubedl/index.mdx +++ b/src/collections/integrations/kubedl/index.mdx @@ -99,8 +99,8 @@ featureList: [ "Integrates with Kubeflow" ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Orchestrates Kubedl jobs" howItWorksDetails: "Streamlined deep learning job management and scaling on Kubernetes" @@ -113,5 +113,5 @@ Run your deep learning workloads on Kubernetes more easily and efficiently. 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/kubeflow/index.mdx b/src/collections/integrations/kubeflow/index.mdx index 2b1f4a723521..1c54ab49aa1f 100644 --- a/src/collections/integrations/kubeflow/index.mdx +++ b/src/collections/integrations/kubeflow/index.mdx @@ -63,8 +63,8 @@ featureList: [ "Easy, repeatable, portable deployments on a diverse infrastructure (for example, experimenting on a laptop, then moving to an on-premises cluster or to the cloud)" ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Collaborative Infrastructure as Design" howItWorksDetails: "Collaboratively manage infrastructure with your coworkers synchronously sharing the same designs." @@ -77,5 +77,5 @@ Kubeflow the cloud-native platform for machine learning operations - pipelines, 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/kubeform-provider-aws/index.mdx b/src/collections/integrations/kubeform-provider-aws/index.mdx index 4611604737ef..c73842da69b8 100644 --- a/src/collections/integrations/kubeform-provider-aws/index.mdx +++ b/src/collections/integrations/kubeform-provider-aws/index.mdx @@ -281,8 +281,8 @@ featureList: [ "Define & manage cloud infrastructures as Kubernetes CRD (Custom Resource Definition)" ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Collaborative Infrastructure as Design" howItWorksDetails: "Collaboratively manage infrastructure with your coworkers synchronously sharing the same designs." @@ -295,5 +295,5 @@ Kubeform is a Kubernetes operator provisioning cloud or on-prem resources using 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/kubegems-edge/index.mdx b/src/collections/integrations/kubegems-edge/index.mdx index 0fe0af74b7a9..cdf014e6b44f 100644 --- a/src/collections/integrations/kubegems-edge/index.mdx +++ b/src/collections/integrations/kubegems-edge/index.mdx @@ -33,8 +33,8 @@ featureList: [ "Remote management of edge Kubernetes clusters" ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Collaborative Infrastructure as Design" howItWorksDetails: "Collaboratively manage infrastructure with your coworkers synchronously sharing the same designs." @@ -47,5 +47,5 @@ Kubegems Edge is a lightweight version of Kubegems designed for edge computing s 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/kubegems-installer/index.mdx b/src/collections/integrations/kubegems-installer/index.mdx index bc4f666696d2..c5c4d745eccb 100644 --- a/src/collections/integrations/kubegems-installer/index.mdx +++ b/src/collections/integrations/kubegems-installer/index.mdx @@ -21,8 +21,8 @@ featureList: [ "Seamless integration with existing Kubernetes clusters" ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Collaborative Infrastructure as Design" howItWorksDetails: "Collaboratively manage infrastructure with your coworkers synchronously sharing the same designs." @@ -35,5 +35,5 @@ Kubegems Installer is a tool for installing and configuring Kubegems. 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/kubegems-local/index.mdx b/src/collections/integrations/kubegems-local/index.mdx index d86e7d2bd46f..445ee1754773 100644 --- a/src/collections/integrations/kubegems-local/index.mdx +++ b/src/collections/integrations/kubegems-local/index.mdx @@ -45,8 +45,8 @@ featureList: [ "Experiment with Kubegems configurations" ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Collaborative Infrastructure as Design" howItWorksDetails: "Collaboratively manage infrastructure with your coworkers synchronously sharing the same designs." @@ -59,5 +59,5 @@ Kubegems Local is a local development environment for Kubegems. 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/kubegems-models/index.mdx b/src/collections/integrations/kubegems-models/index.mdx index 5178ba5f5f86..fa9ef9f3e04a 100644 --- a/src/collections/integrations/kubegems-models/index.mdx +++ b/src/collections/integrations/kubegems-models/index.mdx @@ -21,8 +21,8 @@ featureList: [ "Resource optimization for Kubernetes clusters" ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Collaborative Infrastructure as Design" howItWorksDetails: "Collaboratively manage infrastructure with your coworkers synchronously sharing the same designs." @@ -35,5 +35,5 @@ Kubegems Models is a collection of machine learning models for Kubegems. 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/kubegems/index.mdx b/src/collections/integrations/kubegems/index.mdx index 3354310f06f1..373acdf22803 100644 --- a/src/collections/integrations/kubegems/index.mdx +++ b/src/collections/integrations/kubegems/index.mdx @@ -33,8 +33,8 @@ featureList: [ "Application marketplace and lifecycle management" ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Collaborative Infrastructure as Design" howItWorksDetails: "Collaboratively manage infrastructure with your coworkers synchronously sharing the same designs." @@ -47,5 +47,5 @@ Kubegems is an open-source enterprise-grade Kubernetes multi-cluster management 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/kuberhealthy/index.mdx b/src/collections/integrations/kuberhealthy/index.mdx index 3cd5a9b5dd3f..e292acadb0ac 100644 --- a/src/collections/integrations/kuberhealthy/index.mdx +++ b/src/collections/integrations/kuberhealthy/index.mdx @@ -33,8 +33,8 @@ featureList: [ "Integrates with Prometheus for alerting" ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Runs Kuberhealthy checks" howItWorksDetails: "Proactive health monitoring and alerting for Kubernetes clusters" @@ -47,5 +47,5 @@ A Kubernetes operator for running synthetic checks as pods. Works great with Pro 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/kubernetes-ingress/index.mdx b/src/collections/integrations/kubernetes-ingress/index.mdx index a70dfe499624..4182164d7507 100644 --- a/src/collections/integrations/kubernetes-ingress/index.mdx +++ b/src/collections/integrations/kubernetes-ingress/index.mdx @@ -33,8 +33,8 @@ featureList: [ "Extensible with custom configurations" ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Configures HAProxy Ingress" howItWorksDetails: "Scalable and reliable ingress management with HAProxy in Kubernetes" @@ -47,5 +47,5 @@ An ingress controller is a Kubernetes resource that routes traffic from outside 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/kubernetes-secret-generator/index.mdx b/src/collections/integrations/kubernetes-secret-generator/index.mdx index ec507a0a70fa..387aea6abde5 100644 --- a/src/collections/integrations/kubernetes-secret-generator/index.mdx +++ b/src/collections/integrations/kubernetes-secret-generator/index.mdx @@ -33,8 +33,8 @@ featureList: [ "Rotate secrets automatically" ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Collaborative Infrastructure as Design" howItWorksDetails: "Collaboratively manage infrastructure with your coworkers synchronously sharing the same designs." @@ -47,5 +47,5 @@ Kubernetes Secret Generator is a tool for generating secrets for Kubernetes. 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/kubernetes/index.mdx b/src/collections/integrations/kubernetes/index.mdx index a7fbf329d78c..3a188fde7aa5 100644 --- a/src/collections/integrations/kubernetes/index.mdx +++ b/src/collections/integrations/kubernetes/index.mdx @@ -465,8 +465,8 @@ featureList: [ "Pre and post-provisioning workflow extensions" ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Collaborative Infrastructure as Design" howItWorksDetails: "Collaboratively manage infrastructure with your coworkers synchronously sharing the same designs." @@ -479,5 +479,5 @@ Kubernetes is an open-source system for automating deployment, scaling, and mana 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/kubeslice-worker/index.mdx b/src/collections/integrations/kubeslice-worker/index.mdx index 7b8c9a87d21b..e85aa7c0088e 100644 --- a/src/collections/integrations/kubeslice-worker/index.mdx +++ b/src/collections/integrations/kubeslice-worker/index.mdx @@ -63,8 +63,8 @@ featureList: [ "Isolate workloads from each other on different slices of a Kubernetes cluster" ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Collaborative Infrastructure as Design" howItWorksDetails: "Collaboratively manage infrastructure with your coworkers synchronously sharing the same designs." @@ -77,5 +77,5 @@ Kubeslice Worker is a component of Kubeslice, a tool for slicing Kubernetes clus 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/kubesphere/index.mdx b/src/collections/integrations/kubesphere/index.mdx index 510de0a76e4e..e018aa86ee29 100644 --- a/src/collections/integrations/kubesphere/index.mdx +++ b/src/collections/integrations/kubesphere/index.mdx @@ -219,8 +219,8 @@ featureList: [ "Ongoing synchronization of Kubernetes configuration and changes across any number of clusters." ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Collaborative Infrastructure as Design" howItWorksDetails: "Collaboratively manage infrastructure with your coworkers synchronously sharing the same designs." @@ -233,5 +233,5 @@ The easiest way to get a production-grade Kubernetes cluster up and running 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/kubevault-catalog/index.mdx b/src/collections/integrations/kubevault-catalog/index.mdx index eb5c407d9c82..b4b10559ed71 100644 --- a/src/collections/integrations/kubevault-catalog/index.mdx +++ b/src/collections/integrations/kubevault-catalog/index.mdx @@ -21,8 +21,8 @@ featureList: [ "Reduces manual configuration effort" ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Integrates with KubeVault Catalog" howItWorksDetails: "Easier and faster Vault setup with pre-defined configurations" @@ -35,5 +35,5 @@ Catalog for KubeVault supported versions supported by KubeVault 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/kubevault-crds/index.mdx b/src/collections/integrations/kubevault-crds/index.mdx index 1620935db23c..a7b6bf16d8bc 100644 --- a/src/collections/integrations/kubevault-crds/index.mdx +++ b/src/collections/integrations/kubevault-crds/index.mdx @@ -123,8 +123,8 @@ featureList: [ "Streamlines Vault configuration" ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Integrates with KubeVault CRDs" howItWorksDetails: "Simplified and Kubernetes-native Vault management" @@ -137,5 +137,5 @@ KubeVault is a Git-Ops ready, production-grade solution for deploying and config 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/kubevault-metrics/index.mdx b/src/collections/integrations/kubevault-metrics/index.mdx index 6a2a168b78c2..45b05fa2f34c 100644 --- a/src/collections/integrations/kubevault-metrics/index.mdx +++ b/src/collections/integrations/kubevault-metrics/index.mdx @@ -21,8 +21,8 @@ featureList: [ "Integrates with Prometheus and Grafana" ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Integrates KubeVault metrics" howItWorksDetails: "Enhanced monitoring and observability of Vault in Kubernetes" @@ -35,5 +35,5 @@ KubeVault is a Git-Ops ready, production-grade solution for deploying and config 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/kubevault-operator/index.mdx b/src/collections/integrations/kubevault-operator/index.mdx index ebc3f2efc679..e4e9587bb653 100644 --- a/src/collections/integrations/kubevault-operator/index.mdx +++ b/src/collections/integrations/kubevault-operator/index.mdx @@ -27,8 +27,8 @@ featureList: [ "Ensures high availability and fault tolerance" ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Deploys and manages KubeVault Operator" howItWorksDetails: "Streamlined Vault operation and management in Kubernetes" @@ -41,5 +41,5 @@ KubeVault is a Git-Ops ready, production-grade solution for deploying and config 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/kubevault/index.mdx b/src/collections/integrations/kubevault/index.mdx index 56b35497c1e8..4e16c5b22d24 100644 --- a/src/collections/integrations/kubevault/index.mdx +++ b/src/collections/integrations/kubevault/index.mdx @@ -129,8 +129,8 @@ featureList: [ "Simplifies secret management in Kubernetes" ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Integrates KubeVault deployments" howItWorksDetails: "Streamlined and secure Vault management within Kubernetes" @@ -143,5 +143,5 @@ HashiCorp Vault operator for Kubernetes 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/kubevela/index.mdx b/src/collections/integrations/kubevela/index.mdx index f0cfcfd8c591..6839dfbd5258 100644 --- a/src/collections/integrations/kubevela/index.mdx +++ b/src/collections/integrations/kubevela/index.mdx @@ -81,8 +81,8 @@ featureList: [ "Open Application Model (OAM) based" ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Integrates Kubevela applications" howItWorksDetails: "Streamlined application delivery and management in Kubernetes" @@ -95,5 +95,5 @@ The Modern Application Platform. 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/kubevirt/index.mdx b/src/collections/integrations/kubevirt/index.mdx index 184f2b7f3663..5263bd8d483d 100644 --- a/src/collections/integrations/kubevirt/index.mdx +++ b/src/collections/integrations/kubevirt/index.mdx @@ -21,8 +21,8 @@ featureList: [ "Supports various guest OSs and VM images" ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Manages KubeVirt virtual machines" howItWorksDetails: "Unified management of VMs and containers in Kubernetes" @@ -35,5 +35,5 @@ Kubernetes Virtualization API and runtime in order to define and manage virtual 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/kuma/index.mdx b/src/collections/integrations/kuma/index.mdx index fe0b3673ad2e..2633ed2cc615 100644 --- a/src/collections/integrations/kuma/index.mdx +++ b/src/collections/integrations/kuma/index.mdx @@ -297,8 +297,8 @@ featureList: [ "Multi-zone and multi-mesh support" ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Manages Kuma configurations" howItWorksDetails: "Simplified service mesh management and enhanced observability in Kubernetes" @@ -311,5 +311,5 @@ published: TRUE 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/kured/index.mdx b/src/collections/integrations/kured/index.mdx index b0ee172500c1..ed15a627b745 100644 --- a/src/collections/integrations/kured/index.mdx +++ b/src/collections/integrations/kured/index.mdx @@ -15,8 +15,8 @@ featureList: [ "Minimizes downtime" ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Integrates with Kured" howItWorksDetails: "Improved node reliability and security in Kubernetes" @@ -29,5 +29,5 @@ Kured (KUbernetes REboot Daemon) is a Kubernetes daemonset that performs safe au 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/kusk-gateway/index.mdx b/src/collections/integrations/kusk-gateway/index.mdx index 9520a0d399b3..e734f4d8db46 100644 --- a/src/collections/integrations/kusk-gateway/index.mdx +++ b/src/collections/integrations/kusk-gateway/index.mdx @@ -33,8 +33,8 @@ featureList: [ "Configure critical policies like request timeouts and CORS with no coding required." ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Manages Kusk Gateway configurations" howItWorksDetails: "Simplified API gateway management and enhanced customization in Kubernetes" @@ -47,5 +47,5 @@ Kusk Gateway is a self-service API gateway powered by OpenAPI and Envoy. Kusk Ga 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/kyverno-monitor/index.mdx b/src/collections/integrations/kyverno-monitor/index.mdx index 0720be781468..1d16795832f9 100644 --- a/src/collections/integrations/kyverno-monitor/index.mdx +++ b/src/collections/integrations/kyverno-monitor/index.mdx @@ -23,11 +23,11 @@ match resources using label selectors and wildcards.", " ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Block non-conformant resources" -howItWorksDetails: "Using MeshMap, apply best practice design templates for admission control over non-conformant resources." +howItWorksDetails: "Using Kanvas, apply best practice design templates for admission control over non-conformant resources." published: TRUE ---

    @@ -37,5 +37,5 @@ Kubernetes Native Policy Management 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/kyverno-operator/index.mdx b/src/collections/integrations/kyverno-operator/index.mdx index bfd78f2ac635..2a31a5c325fa 100644 --- a/src/collections/integrations/kyverno-operator/index.mdx +++ b/src/collections/integrations/kyverno-operator/index.mdx @@ -23,11 +23,11 @@ match resources using label selectors and wildcards.", " ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Block non-conformant resources" -howItWorksDetails: "Using MeshMap, apply best practice design templates for admission control over non-conformant resources." +howItWorksDetails: "Using Kanvas, apply best practice design templates for admission control over non-conformant resources." published: TRUE ---

    @@ -37,5 +37,5 @@ Kubernetes Native Policy Management 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/kyverno/index.mdx b/src/collections/integrations/kyverno/index.mdx index 8e9ca46d6ba1..dde34b479879 100644 --- a/src/collections/integrations/kyverno/index.mdx +++ b/src/collections/integrations/kyverno/index.mdx @@ -83,11 +83,11 @@ match resources using label selectors and wildcards.", " ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Block non-conformant resources" -howItWorksDetails: "Using MeshMap, apply best practice design templates for admission control over non-conformant resources." +howItWorksDetails: "Using Kanvas, apply best practice design templates for admission control over non-conformant resources." published: TRUE ---

    @@ -97,5 +97,5 @@ Kubernetes Native Policy Management 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/linkerd/index.mdx b/src/collections/integrations/linkerd/index.mdx index b2d1118082f3..1a170085d23e 100644 --- a/src/collections/integrations/linkerd/index.mdx +++ b/src/collections/integrations/linkerd/index.mdx @@ -15,8 +15,8 @@ featureList: [ "Design Linkerd Service Profiles" ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Collaborative Infrastructure as Design" howItWorksDetails: "Collaboratively manage infrastructure with your coworkers synchronously sharing the same designs." @@ -29,5 +29,5 @@ Ultralight, security-first service mesh for Kubernetes. Main repo for Linkerd 2. 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/linux/index.mdx b/src/collections/integrations/linux/index.mdx index 21c113240bba..a1afd19357a5 100644 --- a/src/collections/integrations/linux/index.mdx +++ b/src/collections/integrations/linux/index.mdx @@ -15,8 +15,8 @@ featureList: [ "Open-source and community-driven development" ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Collaborative Infrastructure as Design" howItWorksDetails: "Collaboratively manage infrastructure with your coworkers synchronously sharing the same designs." diff --git a/src/collections/integrations/litmus-core/index.mdx b/src/collections/integrations/litmus-core/index.mdx index da59ea0ce720..9a7effdfe668 100644 --- a/src/collections/integrations/litmus-core/index.mdx +++ b/src/collections/integrations/litmus-core/index.mdx @@ -33,8 +33,8 @@ featureList: [ "Provides a chaos hub with pre-defined experiments" ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Integrates chaos experiments" howItWorksDetails: "Enhanced resilience testing and validation of Kubernetes applications" @@ -47,5 +47,5 @@ Litmus helps SREs and developers practice chaos engineering in a Cloud-native w 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/loki-simple-scalable/index.mdx b/src/collections/integrations/loki-simple-scalable/index.mdx index ccddccf4ec27..e686c1c2b6a5 100644 --- a/src/collections/integrations/loki-simple-scalable/index.mdx +++ b/src/collections/integrations/loki-simple-scalable/index.mdx @@ -69,8 +69,8 @@ featureList: [ "Integrates with Grafana for visualization" ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Deploys Loki Simple Scalable with Helm" howItWorksDetails: "Simplified Loki deployment and management in Kubernetes" @@ -83,5 +83,5 @@ Loki is a horizontally scalable, highly available, multi-tenant log aggregation 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/loki/index.mdx b/src/collections/integrations/loki/index.mdx index 7fde89d79060..d6d05a8e754e 100644 --- a/src/collections/integrations/loki/index.mdx +++ b/src/collections/integrations/loki/index.mdx @@ -63,8 +63,8 @@ featureList: [ "Label-based querying" ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Integrates Loki logs" howItWorksDetails: "Cost-effective and scalable log management for Kubernetes" @@ -77,5 +77,5 @@ Loki is a horizontally scalable, highly available, multi-tenant log aggregation 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/longhorn/index.mdx b/src/collections/integrations/longhorn/index.mdx index 31b034cb9b3d..8aab3ac366b9 100644 --- a/src/collections/integrations/longhorn/index.mdx +++ b/src/collections/integrations/longhorn/index.mdx @@ -15,8 +15,8 @@ featureList: [ "High availability and disaster recovery" ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Integrates Longhorn storage" howItWorksDetails: "Reliable and scalable storage solution for Kubernetes" @@ -29,5 +29,5 @@ Cloud-Native distributed storage built on and for Kubernetes 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/mattermost-operator/index.mdx b/src/collections/integrations/mattermost-operator/index.mdx index acb45b57e461..ac9e39052313 100644 --- a/src/collections/integrations/mattermost-operator/index.mdx +++ b/src/collections/integrations/mattermost-operator/index.mdx @@ -33,8 +33,8 @@ featureList: [ "Integrates with Kubernetes resources" ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Connect Mattermost with any of your favorite cloud native apps in just a few clicks. Design, build, and automate anything for your work by integrating apps like Mattermost to create visual automated workflows. Choose from thousands of ready-made apps or use our no-code toolkit to connect to apps not yet in our library." howItWorksDetails: "Configuring your own Mattermost environment @@ -49,5 +49,5 @@ Mattermost is a flexible, open source messaging platform that enables secure tea 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/meshery-core/index.mdx b/src/collections/integrations/meshery-core/index.mdx index 320c25532489..00386d7e4f4b 100644 --- a/src/collections/integrations/meshery-core/index.mdx +++ b/src/collections/integrations/meshery-core/index.mdx @@ -105,8 +105,8 @@ featureList: [ "Ongoing synchronization of Kubernetes configuration and changes across any number of clusters." ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Collaborative Infrastructure as Design" howItWorksDetails: "Collaboratively manage infrastructure with your coworkers synchronously sharing the same designs." @@ -119,5 +119,5 @@ Meshery, the cloud native management plane 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/metallb/index.mdx b/src/collections/integrations/metallb/index.mdx index e9a9a209c35d..a37954c82815 100644 --- a/src/collections/integrations/metallb/index.mdx +++ b/src/collections/integrations/metallb/index.mdx @@ -57,8 +57,8 @@ featureList: [ "Integrates with various CNI plugins" ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Configures MetalLB" howItWorksDetails: "Load balancing for bare-metal Kubernetes clusters" @@ -71,5 +71,5 @@ A network load-balancer implementation for Kubernetes using standard routing pro 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/metrics-server/index.mdx b/src/collections/integrations/metrics-server/index.mdx index 018f21df3496..ddd199eece4d 100644 --- a/src/collections/integrations/metrics-server/index.mdx +++ b/src/collections/integrations/metrics-server/index.mdx @@ -15,8 +15,8 @@ featureList: [ "Scalable support up to 5,000 node clusters." ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Collaborative Infrastructure as Design" howItWorksDetails: "Collaboratively manage infrastructure with your coworkers synchronously sharing the same designs." diff --git a/src/collections/integrations/mimir-distributed/index.mdx b/src/collections/integrations/mimir-distributed/index.mdx index 348d8cdaf560..6e8df5050bdf 100644 --- a/src/collections/integrations/mimir-distributed/index.mdx +++ b/src/collections/integrations/mimir-distributed/index.mdx @@ -63,8 +63,8 @@ featureList: [ "Advanced multi-tenancy and isolation" ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Collaborative Infrastructure as Design" howItWorksDetails: "Collaboratively manage infrastructure with your coworkers synchronously sharing the same designs." @@ -80,5 +80,5 @@ Grafana Mimir lets you scale to 1 billion metrics and beyond, with high availabi 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/minio-operator/index.mdx b/src/collections/integrations/minio-operator/index.mdx index 3dc9eccb666b..050a272cf2f1 100644 --- a/src/collections/integrations/minio-operator/index.mdx +++ b/src/collections/integrations/minio-operator/index.mdx @@ -21,8 +21,8 @@ featureList: [ "MinIO offers Active Active, Multi-Site Replication for Object Storage is a key requirement for mission-critical production environments." ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Collaborative Infrastructure as Design" howItWorksDetails: "Collaboratively manage infrastructure with your coworkers synchronously sharing the same designs." @@ -35,5 +35,5 @@ MinIO is a high performance, Kubernetes native object storage suite. With an ext 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/mpi-operator/index.mdx b/src/collections/integrations/mpi-operator/index.mdx index 78a95c0419d1..8cdce1f05e59 100644 --- a/src/collections/integrations/mpi-operator/index.mdx +++ b/src/collections/integrations/mpi-operator/index.mdx @@ -21,8 +21,8 @@ featureList: [ "Ongoing synchronization of Kubernetes configuration and changes across any number of clusters." ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Collaborative Infrastructure as Design" howItWorksDetails: "Collaboratively manage infrastructure with your coworkers synchronously sharing the same designs." @@ -35,5 +35,5 @@ The MPI Operator makes it easy to run allreduce-style distributed training on Ku 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/mysql-operator/index.mdx b/src/collections/integrations/mysql-operator/index.mdx index 706ec6c3ae9a..8c7de5492e3d 100644 --- a/src/collections/integrations/mysql-operator/index.mdx +++ b/src/collections/integrations/mysql-operator/index.mdx @@ -63,8 +63,8 @@ featureList: [ "Provides monitoring and alerting" ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Deploys and manages MySQL" howItWorksDetails: "Streamlined MySQL management within Kubernetes" @@ -77,5 +77,5 @@ MySQL Operator for Kubernetes manages MySQL InnoDB Cluster setups inside a Kuber 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/nats-operator/index.mdx b/src/collections/integrations/nats-operator/index.mdx index b1f460062ae1..9001a14df81b 100644 --- a/src/collections/integrations/nats-operator/index.mdx +++ b/src/collections/integrations/nats-operator/index.mdx @@ -27,8 +27,8 @@ featureList: [ "Meshery Broker with NATS inside" ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Collaborative Infrastructure as Design" howItWorksDetails: "Collaboratively manage infrastructure with your coworkers synchronously sharing the same designs." @@ -41,5 +41,5 @@ High-Performance server for NATS.io, the cloud and edge native messaging system. 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/newrelic-operator/index.mdx b/src/collections/integrations/newrelic-operator/index.mdx index be6c3fb10e5d..5fa536876964 100644 --- a/src/collections/integrations/newrelic-operator/index.mdx +++ b/src/collections/integrations/newrelic-operator/index.mdx @@ -45,8 +45,8 @@ featureList: [ "Alert Channels" ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Collaborative Infrastructure as Design" howItWorksDetails: "Collaboratively manage infrastructure with your coworkers synchronously sharing the same designs." @@ -59,5 +59,5 @@ The newrelic-kubernetes-operator is a Kubernetes Operator that facilitates manag 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/nginx-ingress/index.mdx b/src/collections/integrations/nginx-ingress/index.mdx index 29bca4f712af..2f11b71a7671 100644 --- a/src/collections/integrations/nginx-ingress/index.mdx +++ b/src/collections/integrations/nginx-ingress/index.mdx @@ -87,8 +87,8 @@ featureList: [ "Provides SSL termination and load balancing" ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Configures NGINX Ingress Controller" howItWorksDetails: "Simplified ingress management and enhanced traffic routing in Kubernetes" @@ -101,5 +101,5 @@ NGINX Ingress Controller is synonymous with high‑performing, scalable, and sec 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/nginx-service-mesh/index.mdx b/src/collections/integrations/nginx-service-mesh/index.mdx index bf31e93142fe..ff3b81240ba3 100644 --- a/src/collections/integrations/nginx-service-mesh/index.mdx +++ b/src/collections/integrations/nginx-service-mesh/index.mdx @@ -69,8 +69,8 @@ featureList: [ "Enhances security and reliability" ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Manages NGINX Service Mesh" howItWorksDetails: "Streamlined service mesh management with enhanced features in Kubernetes" @@ -83,5 +83,5 @@ NGINX Service Mesh is a fully integrated lightweight service mesh that leverages 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/nginx/index.mdx b/src/collections/integrations/nginx/index.mdx index 9864ab1d697e..88dc5b36c384 100644 --- a/src/collections/integrations/nginx/index.mdx +++ b/src/collections/integrations/nginx/index.mdx @@ -15,8 +15,8 @@ featureList: [ "Extensible with modules" ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Integrates NGINX" howItWorksDetails: "Powerful and flexible web serving and load balancing in Kubernetes" @@ -29,5 +29,5 @@ NGINX is a free, open-source, high-performance HTTP server and reverse proxy, as 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/nirmata-aws-adapter/index.mdx b/src/collections/integrations/nirmata-aws-adapter/index.mdx index 45f6706cd29e..cc9aeee97953 100644 --- a/src/collections/integrations/nirmata-aws-adapter/index.mdx +++ b/src/collections/integrations/nirmata-aws-adapter/index.mdx @@ -21,8 +21,8 @@ featureList: [ "Enhances security for Kubernetes clusters" ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Manages certificates within Meshery" howItWorksDetails: "Streamlined certificate management and improved security in Kubernetes" @@ -35,5 +35,5 @@ Nirmata AWS Adapter is a component of Nirmata that provides integration with AWS 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/nirmata-venafi-adapter/index.mdx b/src/collections/integrations/nirmata-venafi-adapter/index.mdx index e022197ebb0f..5a92f28737fe 100644 --- a/src/collections/integrations/nirmata-venafi-adapter/index.mdx +++ b/src/collections/integrations/nirmata-venafi-adapter/index.mdx @@ -21,8 +21,8 @@ featureList: [ "Enhances security for Kubernetes clusters" ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Manages certificates within Meshery" howItWorksDetails: "Streamlined certificate management and improved security in Kubernetes" @@ -35,5 +35,5 @@ Nirmata Venafi Adapter is a component of Nirmata that provides integration with 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/nocalhost/index.mdx b/src/collections/integrations/nocalhost/index.mdx index 3f4c374e9f25..7f08ea236160 100644 --- a/src/collections/integrations/nocalhost/index.mdx +++ b/src/collections/integrations/nocalhost/index.mdx @@ -15,8 +15,8 @@ featureList: [ "Enables debugging and hot reloading" ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Integrates Nocalhost environments" howItWorksDetails: "Faster and more efficient development of Kubernetes applications" @@ -29,5 +29,5 @@ Nocalhost is Cloud Native Dev Environment. 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/notary/index.mdx b/src/collections/integrations/notary/index.mdx index 425469d2b583..bfaab477f889 100644 --- a/src/collections/integrations/notary/index.mdx +++ b/src/collections/integrations/notary/index.mdx @@ -15,8 +15,8 @@ featureList: [ "Builds trust in container images" ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Integrates Notary signatures" howItWorksDetails: "Enhanced security and trust in container image distribution in Kubernetes" @@ -29,5 +29,5 @@ Notary is a project that allows anyone to have trust over arbitrary collections 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/ondat-operator/index.mdx b/src/collections/integrations/ondat-operator/index.mdx index 9ee500d03865..1624c84e203b 100644 --- a/src/collections/integrations/ondat-operator/index.mdx +++ b/src/collections/integrations/ondat-operator/index.mdx @@ -15,8 +15,8 @@ featureList: [ "Integrates with Kubernetes resources" ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Deploys and manages Ondat storage" howItWorksDetails: "Simplified persistent storage management within Kubernetes" @@ -29,5 +29,5 @@ ondat-operator is a Kubernetes operator for managing Ondat, a cloud-native persi 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/open-cluster-management/index.mdx b/src/collections/integrations/open-cluster-management/index.mdx index 0326411c59ee..4a57cecccdae 100644 --- a/src/collections/integrations/open-cluster-management/index.mdx +++ b/src/collections/integrations/open-cluster-management/index.mdx @@ -15,8 +15,8 @@ featureList: [ "Centralized policy and configuration management" ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Integrates Open Cluster Management clusters" howItWorksDetails: "Streamlined multi-cluster management and governance" @@ -29,5 +29,5 @@ Contains useful documentation on the OCM project. Report here if you found any i 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/open-policy-agent-(opa)/index.mdx b/src/collections/integrations/open-policy-agent-(opa)/index.mdx index dc163821c8d7..a28018b909c5 100644 --- a/src/collections/integrations/open-policy-agent-(opa)/index.mdx +++ b/src/collections/integrations/open-policy-agent-(opa)/index.mdx @@ -93,8 +93,8 @@ featureList: [ "Supports various policy languages" ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Integrates OPA policies" howItWorksDetails: "Flexible and consistent policy enforcement in Kubernetes" @@ -107,5 +107,5 @@ An open source, general-purpose policy engine. 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/open-service-mesh/index.mdx b/src/collections/integrations/open-service-mesh/index.mdx index 1dd1aaa3f466..81a0d6292b0d 100644 --- a/src/collections/integrations/open-service-mesh/index.mdx +++ b/src/collections/integrations/open-service-mesh/index.mdx @@ -33,8 +33,8 @@ featureList: [ "Conformance to Service Mesh Interface specifications" ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Collaborative Infrastructure as Code" howItWorksDetails: "Collaboratively manage infrastructure with your coworkers synchronously sharing the same designs." @@ -44,5 +44,5 @@ published: TRUE Open Service Mesh (OSM) is a lightweight, extensible, cloud native service mesh that allows users to uniformly manage, secure, and get out-of-the-box observability features for highly dynamic microservice environments.

    - Deploy the Meshery Adapter for Open Service Mesh and enable fine-grained lifecycle and configuration management over your Open Service Mesh-enabled Kubernetes clusters. Whether you are using Azuare Kubernetes Service (AKS), another managed Kubernetes serviced or are using a self-hosted Kubernetes distribution. Design, test, and manage configuration of all your cloud infrastructure and containerized applications as a visual topology. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, create and deploy your own cloud native infrastructure designs. + Deploy the Meshery Adapter for Open Service Mesh and enable fine-grained lifecycle and configuration management over your Open Service Mesh-enabled Kubernetes clusters. Whether you are using Azuare Kubernetes Service (AKS), another managed Kubernetes serviced or are using a self-hosted Kubernetes distribution. Design, test, and manage configuration of all your cloud infrastructure and containerized applications as a visual topology. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, Kanvas, create and deploy your own cloud native infrastructure designs.

    diff --git a/src/collections/integrations/openebs/index.mdx b/src/collections/integrations/openebs/index.mdx index 749b51a24d84..1caed54f21bf 100644 --- a/src/collections/integrations/openebs/index.mdx +++ b/src/collections/integrations/openebs/index.mdx @@ -177,8 +177,8 @@ featureList: [ "Supports various storage backends" ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Integrates OpenEBS storage" howItWorksDetails: "Simplified and scalable storage management in Kubernetes" @@ -191,5 +191,5 @@ Leading Open Source Container Attached Storage, built using Cloud Native Archite 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/openelb/index.mdx b/src/collections/integrations/openelb/index.mdx index 171b9be528ec..e562a0806b6b 100644 --- a/src/collections/integrations/openelb/index.mdx +++ b/src/collections/integrations/openelb/index.mdx @@ -33,8 +33,8 @@ featureList: [ "High availability and scalability" ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Integrates with OpenELB configurations" howItWorksDetails: "Simplified load balancing configuration and management within Kubernetes" @@ -47,5 +47,5 @@ OpenELB is a Kubernetes-native load balancer implementation. 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/openfeature/index.mdx b/src/collections/integrations/openfeature/index.mdx index 510069c3e72c..66208d0a0788 100644 --- a/src/collections/integrations/openfeature/index.mdx +++ b/src/collections/integrations/openfeature/index.mdx @@ -15,8 +15,8 @@ featureList: [ "Promotes best practices for operator development" ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Extends Meshery's capabilities" howItWorksDetails: "Facilitates the creation of custom operators for Meshery" @@ -29,5 +29,5 @@ Standardizing Feature Flagging for Everyone 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/opengitops/index.mdx b/src/collections/integrations/opengitops/index.mdx index f8ae0ea40561..4888ed24b1af 100644 --- a/src/collections/integrations/opengitops/index.mdx +++ b/src/collections/integrations/opengitops/index.mdx @@ -15,8 +15,8 @@ featureList: [ "Continuous deployment and reconciliation" ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Integrates OpenGitOps workflows" howItWorksDetails: "Streamlined and auditable infrastructure management in Kubernetes" @@ -29,5 +29,5 @@ Repository for top-level information about the OpenGitOps project 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/openkruise/index.mdx b/src/collections/integrations/openkruise/index.mdx index f202295bd5bd..cb51dd48cdb2 100644 --- a/src/collections/integrations/openkruise/index.mdx +++ b/src/collections/integrations/openkruise/index.mdx @@ -123,8 +123,8 @@ featureList: [ "Integrates with Kubernetes resources" ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Integrates OpenKruise controllers" howItWorksDetails: "Enhanced workload management and deployment in Kubernetes" @@ -137,5 +137,5 @@ Automate application management on Kubernetes (project under CNCF) 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/openmetrics/index.mdx b/src/collections/integrations/openmetrics/index.mdx index e5cdaa5edc66..333b128d4de2 100644 --- a/src/collections/integrations/openmetrics/index.mdx +++ b/src/collections/integrations/openmetrics/index.mdx @@ -15,8 +15,8 @@ featureList: [ "Interoperable with Prometheus" ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Integrates OpenMetrics" howItWorksDetails: "Standardized metrics collection and monitoring in Kubernetes" @@ -29,5 +29,5 @@ Evolving the Prometheus exposition format into a standard. 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/opentelemetry-operator/index.mdx b/src/collections/integrations/opentelemetry-operator/index.mdx index c17e48cb9fb0..a02bf33229eb 100644 --- a/src/collections/integrations/opentelemetry-operator/index.mdx +++ b/src/collections/integrations/opentelemetry-operator/index.mdx @@ -21,8 +21,8 @@ featureList: [ "Integrates with Kubernetes resources" ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Deploys and manages OpenTelemetry" howItWorksDetails: "Streamlined observability setup and management in Kubernetes" @@ -35,5 +35,5 @@ OpenTelemetry community content 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/operator-framework/index.mdx b/src/collections/integrations/operator-framework/index.mdx index 4d8804a5d059..06a79e3cb02c 100644 --- a/src/collections/integrations/operator-framework/index.mdx +++ b/src/collections/integrations/operator-framework/index.mdx @@ -21,8 +21,8 @@ featureList: [ "Extends Kubernetes API" ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Integrates with operator CRDs" howItWorksDetails: "Facilitates the use of custom resources within Meshery" @@ -35,5 +35,5 @@ SDK for building Kubernetes applications. Provides high level APIs, useful abstr 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/oras/index.mdx b/src/collections/integrations/oras/index.mdx index 59694ca48b99..1dac34eee834 100644 --- a/src/collections/integrations/oras/index.mdx +++ b/src/collections/integrations/oras/index.mdx @@ -15,8 +15,8 @@ featureList: [ "Ongoing synchronization of Kubernetes configuration and changes across any number of clusters." ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Collaborative Infrastructure as Design" howItWorksDetails: "Collaboratively manage infrastructure with your coworkers synchronously sharing the same designs." @@ -29,5 +29,5 @@ Work with OCI registries, but for secure supply chain - managing content like ar 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/parsec/index.mdx b/src/collections/integrations/parsec/index.mdx index 6557fb991480..0116bae1e16c 100644 --- a/src/collections/integrations/parsec/index.mdx +++ b/src/collections/integrations/parsec/index.mdx @@ -15,8 +15,8 @@ featureList: [ "Cross-platform compatibility" ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "N/A (not directly integrated)" howItWorksDetails: "Collaboratively manage infrastructure with your coworkers synchronously sharing the same designs." @@ -29,5 +29,5 @@ Platform Abstraction for security service 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/pg-db/index.mdx b/src/collections/integrations/pg-db/index.mdx index 87c5428ac002..f41d8feffc75 100644 --- a/src/collections/integrations/pg-db/index.mdx +++ b/src/collections/integrations/pg-db/index.mdx @@ -45,8 +45,8 @@ featureList: [ "Advanced PostgreSQL features (e.g., backups)" ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Deploys and manages PostgreSQL" howItWorksDetails: "Collaboratively manage infrastructure with your coworkers synchronously sharing the same designs." @@ -59,5 +59,5 @@ Manage Postgres clusters via PGO, the open source Postgres Operator from Crunchy 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/pg-operator/index.mdx b/src/collections/integrations/pg-operator/index.mdx index 522b2dc7b4eb..baf475f0d54e 100644 --- a/src/collections/integrations/pg-operator/index.mdx +++ b/src/collections/integrations/pg-operator/index.mdx @@ -69,8 +69,8 @@ featureList: [ "Create ready-to-use database clusters of open source, enterprise-ready versions of MySQL, MongoDB, and PostgreSQL, created and supported by the Percona team." ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Collaborative Infrastructure as Design" howItWorksDetails: "Collaboratively manage infrastructure with your coworkers synchronously sharing the same designs." diff --git a/src/collections/integrations/pgo/index.mdx b/src/collections/integrations/pgo/index.mdx index df920cdf9680..46fbfe3d48cb 100644 --- a/src/collections/integrations/pgo/index.mdx +++ b/src/collections/integrations/pgo/index.mdx @@ -33,8 +33,8 @@ featureList: [ "Advanced PostgreSQL features (e.g., backups)" ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Deploys and manages PostgreSQL" howItWorksDetails: "Collaboratively manage infrastructure with your coworkers synchronously sharing the same designs." @@ -47,5 +47,5 @@ PGO, the Postgres Operator from Crunchy Data, gives you a declarative Postgres s 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/piraeus-datastore/index.mdx b/src/collections/integrations/piraeus-datastore/index.mdx index 7122620f71e6..d52595fabead 100644 --- a/src/collections/integrations/piraeus-datastore/index.mdx +++ b/src/collections/integrations/piraeus-datastore/index.mdx @@ -87,8 +87,8 @@ featureList: [ "Supports 1/2/3 replica numbers for persistent volumes. Piraeus place the replicas intelligently across the nodes to balance the workload." ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Piraeus can run on all kinds of storage medium: RAID, SAN, NAS or EBS" howItWorksDetails: "It deploys and scales out automatically within Kubernetes nodes. With Piraeus, Kubernetes workloads can now consume high performance local storage using the same volume APIs that app developers have become accustomed to." @@ -101,5 +101,5 @@ Piraeus is a cloud-native storage system that empowers Kubernetes Local Persiste 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/pixie/index.mdx b/src/collections/integrations/pixie/index.mdx index eee2ccb0af18..b8143a1b7ef1 100644 --- a/src/collections/integrations/pixie/index.mdx +++ b/src/collections/integrations/pixie/index.mdx @@ -15,8 +15,8 @@ featureList: [ "Ongoing synchronization of Kubernetes configuration and changes across any number of clusters." ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Collaborative Infrastructure as Design" howItWorksDetails: "Collaboratively manage infrastructure with your coworkers synchronously sharing the same designs." @@ -29,5 +29,5 @@ Open source Kubernetes observability for developers 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/porter/index.mdx b/src/collections/integrations/porter/index.mdx index 101b4c946a5c..3039c20a01a6 100644 --- a/src/collections/integrations/porter/index.mdx +++ b/src/collections/integrations/porter/index.mdx @@ -33,8 +33,8 @@ featureList: [ "Supports various cloud native environments" ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Integrates Porter bundles" howItWorksDetails: "Streamlined application packaging and deployment in Kubernetes" @@ -47,5 +47,5 @@ Porter enables you to package your application artifact, client tools, configura 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/postgres-controller/index.mdx b/src/collections/integrations/postgres-controller/index.mdx index e2094fe48b6b..7c09f0df495b 100644 --- a/src/collections/integrations/postgres-controller/index.mdx +++ b/src/collections/integrations/postgres-controller/index.mdx @@ -21,8 +21,8 @@ featureList: [ "Provides backup and restore functionality" ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Deploys and manages PostgreSQL" howItWorksDetails: "Simplified PostgreSQL management within Kubernetes" @@ -35,5 +35,5 @@ A controller for managing PostgreSQL databases, roles and more 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/postgres-operator/index.mdx b/src/collections/integrations/postgres-operator/index.mdx index f716f949eaa7..82769d3ced92 100644 --- a/src/collections/integrations/postgres-operator/index.mdx +++ b/src/collections/integrations/postgres-operator/index.mdx @@ -33,8 +33,8 @@ featureList: [ "Provides backup and restore functionality" ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Deploys and manages PostgreSQL" howItWorksDetails: "Simplified PostgreSQL management within Kubernetes" @@ -47,5 +47,5 @@ Postgres Operator creates and manages PostgreSQL clusters running in Kubernetes 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/postgres-with-operator/index.mdx b/src/collections/integrations/postgres-with-operator/index.mdx index dd160e99ba10..36f8189c5623 100644 --- a/src/collections/integrations/postgres-with-operator/index.mdx +++ b/src/collections/integrations/postgres-with-operator/index.mdx @@ -21,8 +21,8 @@ featureList: [ "Automates PostgreSQL operations" ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Deploys and manages PostgreSQL" howItWorksDetails: "Streamlined PostgreSQL management within Kubernetes" @@ -35,5 +35,5 @@ Postgres Operator creates and manages PostgreSQL clusters running in Kubernetes 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/posthog/index.mdx b/src/collections/integrations/posthog/index.mdx index 13266a3a99bd..fef315ccdc84 100644 --- a/src/collections/integrations/posthog/index.mdx +++ b/src/collections/integrations/posthog/index.mdx @@ -33,8 +33,8 @@ featureList: [ "Experimentation and A/B testing" ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Integrates PostHog analytics" howItWorksDetails: "Data-driven insights for improving Kubernetes applications and services" @@ -47,5 +47,5 @@ PostHog is an open-source product analytics platform. 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/pravega/index.mdx b/src/collections/integrations/pravega/index.mdx index 4e01122108ee..202536a3e4ec 100644 --- a/src/collections/integrations/pravega/index.mdx +++ b/src/collections/integrations/pravega/index.mdx @@ -21,8 +21,8 @@ featureList: [ "Ongoing synchronization of Kubernetes configuration and changes across any number of clusters." ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Collaborative Infrastructure as Design" howItWorksDetails: "Collaboratively manage infrastructure with your coworkers synchronously sharing the same designs." @@ -35,5 +35,5 @@ Pravega - Streaming as a new software defined storage primitive 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/prometheus-operator-crds/index.mdx b/src/collections/integrations/prometheus-operator-crds/index.mdx index a3a1a8daaad7..a17a693c46db 100644 --- a/src/collections/integrations/prometheus-operator-crds/index.mdx +++ b/src/collections/integrations/prometheus-operator-crds/index.mdx @@ -15,8 +15,8 @@ featureList: [ "Keep charts in-sync with Mesherys panel viewer" ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Meshery provides performance reports, including performance test results, node resource metrics etc. so that operators may easily understand the overhead of their service mesh’s control plane and data plane in context of the overhead incurred on nodes running within the cluster. In order to generate performance test reports of service meshes and their workloads, Meshery uses Grafana and/or Prometheus as visualization and metrics systems, respectively. This guide outlines the requirements necessary for Meshery to connect to these systems. The steps may vary depending upon the service mesh and its configuration." howItWorksDetails: "Collaboratively manage infrastructure with your coworkers synchronously sharing the same designs." @@ -29,5 +29,5 @@ The Prometheus monitoring system and time series database. 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/prometheus/index.mdx b/src/collections/integrations/prometheus/index.mdx index 93c0289a499f..d8e1f037c62d 100644 --- a/src/collections/integrations/prometheus/index.mdx +++ b/src/collections/integrations/prometheus/index.mdx @@ -15,8 +15,8 @@ featureList: [ "Keep charts in-sync with Mesherys panel viewer" ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Meshery provides performance reports, including performance test results, node resource metrics etc. so that operators may easily understand the overhead of their service mesh’s control plane and data plane in context of the overhead incurred on nodes running within the cluster. In order to generate performance test reports of service meshes and their workloads, Meshery uses Grafana and/or Prometheus as visualization and metrics systems, respectively. This guide outlines the requirements necessary for Meshery to connect to these systems. The steps may vary depending upon the service mesh and its configuration." howItWorksDetails: "Collaboratively manage infrastructure with your coworkers synchronously sharing the same designs." @@ -29,5 +29,5 @@ The Prometheus monitoring system and time series database. 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/ps-db/index.mdx b/src/collections/integrations/ps-db/index.mdx index adb136560029..d38f86425efb 100644 --- a/src/collections/integrations/ps-db/index.mdx +++ b/src/collections/integrations/ps-db/index.mdx @@ -33,8 +33,8 @@ featureList: [ "Keep charts in-sync with Mesherys panel viewer" ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Meshery provides performance reports, including performance test results, node resource metrics etc. so that operators may easily understand the overhead of their service mesh’s control plane and data plane in context of the overhead incurred on nodes running within the cluster. In order to generate performance test reports of service meshes and their workloads, Meshery uses Grafana and/or Prometheus as visualization and metrics systems, respectively. This guide outlines the requirements necessary for Meshery to connect to these systems. The steps may vary depending upon the service mesh and its configuration." howItWorksDetails: "Collaboratively manage infrastructure with your coworkers synchronously sharing the same designs." @@ -47,5 +47,5 @@ The Prometheus monitoring system and time series database. 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/ps-operator/index.mdx b/src/collections/integrations/ps-operator/index.mdx index 80d324670db6..d7d9242c6d61 100644 --- a/src/collections/integrations/ps-operator/index.mdx +++ b/src/collections/integrations/ps-operator/index.mdx @@ -33,8 +33,8 @@ featureList: [ "Provides high availability and failover" ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Deploys and manages PXC" howItWorksDetails: "Streamlined PXC management within Kubernetes" @@ -47,5 +47,5 @@ Percona Operator for MySQL allows users to deploy and manage Percona Server for 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/psmdb-db/index.mdx b/src/collections/integrations/psmdb-db/index.mdx index 2490ec8b2cd6..39414988dab1 100644 --- a/src/collections/integrations/psmdb-db/index.mdx +++ b/src/collections/integrations/psmdb-db/index.mdx @@ -15,8 +15,8 @@ featureList: [ "Enterprise-grade support" ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Integrates Percona Server for MongoDB" howItWorksDetails: "Streamlined MongoDB management within Kubernetes" @@ -29,5 +29,5 @@ Percona Server for MongoDB Cluster on Kubernetes controlled by Percona Operator 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/psmdb-operator/index.mdx b/src/collections/integrations/psmdb-operator/index.mdx index 57af3ef22e22..ac389570e357 100644 --- a/src/collections/integrations/psmdb-operator/index.mdx +++ b/src/collections/integrations/psmdb-operator/index.mdx @@ -33,8 +33,8 @@ featureList: [ "Simplifies MongoDB operations" ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Deploys and manages Percona Server for MongoDB" howItWorksDetails: "Collaboratively manage infrastructure with your coworkers synchronously sharing the same designs." @@ -47,5 +47,5 @@ Percona Operator for MongoDB allows users to deploy and manage Percona Server fo 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/pulsar-operator/index.mdx b/src/collections/integrations/pulsar-operator/index.mdx index cee5ab795399..8c67c4b7c8c4 100644 --- a/src/collections/integrations/pulsar-operator/index.mdx +++ b/src/collections/integrations/pulsar-operator/index.mdx @@ -39,8 +39,8 @@ featureList: [ "Integrates with Kubernetes resources" ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Deploys and manages Pulsar" howItWorksDetails: "Simplified Pulsar management within Kubernetes" @@ -53,5 +53,5 @@ The Pulsar Operator is a controller that manages Pulsar clusters in Kubernetes. 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/pulsar-resources-operator/index.mdx b/src/collections/integrations/pulsar-resources-operator/index.mdx index 2275fd126c38..da850c3c09e9 100644 --- a/src/collections/integrations/pulsar-resources-operator/index.mdx +++ b/src/collections/integrations/pulsar-resources-operator/index.mdx @@ -81,8 +81,8 @@ featureList: [ "Integrates with Kubernetes resources" ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Manages Pulsar resources" howItWorksDetails: "Streamlined Pulsar resource management within Kubernetes" @@ -95,5 +95,5 @@ The Pulsar Operator is a controller that manages Pulsar clusters in Kubernetes. 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/rabbitmq-cluster-operator/index.mdx b/src/collections/integrations/rabbitmq-cluster-operator/index.mdx index 13516fad5ae3..e6f1cdd2a60b 100644 --- a/src/collections/integrations/rabbitmq-cluster-operator/index.mdx +++ b/src/collections/integrations/rabbitmq-cluster-operator/index.mdx @@ -99,8 +99,8 @@ featureList: [ "Monitoring and alerting" ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Deploys and manages RabbitMQ clusters" howItWorksDetails: "Simplified RabbitMQ cluster management within Kubernetes" @@ -113,5 +113,5 @@ RabbitMQ Cluster Operator is a Kubernetes operator for managing RabbitMQ cluster 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/rabbitmq-operator/index.mdx b/src/collections/integrations/rabbitmq-operator/index.mdx index 9c282b05e0e8..28a61adbf7df 100644 --- a/src/collections/integrations/rabbitmq-operator/index.mdx +++ b/src/collections/integrations/rabbitmq-operator/index.mdx @@ -21,8 +21,8 @@ featureList: [ "Integration with Kubernetes resources" ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Simplifies RabbitMQ operations" howItWorksDetails: "Streamlined RabbitMQ management within Kubernetes" @@ -35,5 +35,5 @@ RabbitMQ Operator is a Kubernetes operator for managing RabbitMQ instances. 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/redis-operator/index.mdx b/src/collections/integrations/redis-operator/index.mdx index 4a57362c3eae..fc5f3d68a6ce 100644 --- a/src/collections/integrations/redis-operator/index.mdx +++ b/src/collections/integrations/redis-operator/index.mdx @@ -39,8 +39,8 @@ featureList: [ "High availability and failover" ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Deploys and manages Redis clusters" howItWorksDetails: "Simplified Redis cluster management within Kubernetes" @@ -53,5 +53,5 @@ Redis Operator is a Kubernetes operator for managing Redis clusters. 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/rook-ceph-cluster/index.mdx b/src/collections/integrations/rook-ceph-cluster/index.mdx index 8f671e021a3e..32f6687d9f2e 100644 --- a/src/collections/integrations/rook-ceph-cluster/index.mdx +++ b/src/collections/integrations/rook-ceph-cluster/index.mdx @@ -15,8 +15,8 @@ featureList: [ "Ongoing synchronization of Kubernetes configuration and changes across any number of clusters." ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Collaborative Infrastructure as Design" howItWorksDetails: "Collaboratively manage infrastructure with your coworkers synchronously sharing the same designs." @@ -28,5 +28,5 @@ Rook is Storage Operators for Kubernetes

    Rook turns distributed storage systems into self-managing, self-scaling, self-healing storage services. It automates the tasks of a storage administrator: deployment, bootstrapping, configuration, provisioning, scaling, upgrading, migration, disaster recovery, monitoring, and resource management.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/rook/index.mdx b/src/collections/integrations/rook/index.mdx index 5bac7a5c73fe..b8f38d5a67ab 100644 --- a/src/collections/integrations/rook/index.mdx +++ b/src/collections/integrations/rook/index.mdx @@ -15,8 +15,8 @@ featureList: [ "Ongoing synchronization of Kubernetes configuration and changes across any number of clusters." ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Collaborative Infrastructure as Design" howItWorksDetails: "Collaboratively manage infrastructure with your coworkers synchronously sharing the same designs." @@ -29,5 +29,5 @@ Storage Orchestration for Kubernetes 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/saferwall/index.mdx b/src/collections/integrations/saferwall/index.mdx index 7edb9cb31159..9c2fe470c27c 100644 --- a/src/collections/integrations/saferwall/index.mdx +++ b/src/collections/integrations/saferwall/index.mdx @@ -111,8 +111,8 @@ featureList: [ "Compliance checks" ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Integrates Saferwall scans" howItWorksDetails: "Enhanced security of container images within Kubernetes" @@ -125,5 +125,5 @@ Saferwall is a Kubernetes-native security platform for container image scanning 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/scheduler-plugins/index.mdx b/src/collections/integrations/scheduler-plugins/index.mdx index 58ca4df845f5..522e89326d99 100644 --- a/src/collections/integrations/scheduler-plugins/index.mdx +++ b/src/collections/integrations/scheduler-plugins/index.mdx @@ -33,8 +33,8 @@ featureList: [ "Affinity and anti-affinity rules" ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Integrates with scheduler plugins" howItWorksDetails: "Flexible and customizable scheduling within Kubernetes" @@ -47,5 +47,5 @@ Scheduler Plugins are extensions for the Kubernetes scheduler that provide custo 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/schemahero/index.mdx b/src/collections/integrations/schemahero/index.mdx index 6eb926c6a0f7..37a0b5a5cb3e 100644 --- a/src/collections/integrations/schemahero/index.mdx +++ b/src/collections/integrations/schemahero/index.mdx @@ -33,8 +33,8 @@ featureList: [ "Integration with various logging backends" ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Integrates Scribe configurations" howItWorksDetails: "Streamlined log management and aggregation within Kubernetes" @@ -47,5 +47,5 @@ A Kubernetes operator for declarative database schema management (gitops for dat 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/security-role-perm-operator-svc/index.mdx b/src/collections/integrations/security-role-perm-operator-svc/index.mdx index 83649d18d984..f2601eb961b4 100644 --- a/src/collections/integrations/security-role-perm-operator-svc/index.mdx +++ b/src/collections/integrations/security-role-perm-operator-svc/index.mdx @@ -27,8 +27,8 @@ featureList: [ "Integrates with Kubernetes RBAC" ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Manages security roles and permissions" howItWorksDetails: "Simplified RBAC management and enhanced security in Kubernetes" @@ -41,5 +41,5 @@ Security Role Perm Operator Svc is a Kubernetes operator for managing security r 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/serverless-workflow/index.mdx b/src/collections/integrations/serverless-workflow/index.mdx index c9a807f35166..2d8ac94f501b 100644 --- a/src/collections/integrations/serverless-workflow/index.mdx +++ b/src/collections/integrations/serverless-workflow/index.mdx @@ -15,8 +15,8 @@ featureList: [ "Ongoing synchronization of Kubernetes configuration and changes across any number of clusters." ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Collaborative Infrastructure as Design" howItWorksDetails: "Collaboratively manage infrastructure with your coworkers synchronously sharing the same designs." @@ -29,5 +29,5 @@ Serverless Workflow Specification 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/sidekick/index.mdx b/src/collections/integrations/sidekick/index.mdx index 87a506f8f641..a64a274a56ae 100644 --- a/src/collections/integrations/sidekick/index.mdx +++ b/src/collections/integrations/sidekick/index.mdx @@ -21,8 +21,8 @@ featureList: [ "Integrates with Kubernetes resources" ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Manages Sidekick configurations" howItWorksDetails: "Simplified sidecar container management within Kubernetes" @@ -35,5 +35,5 @@ Sidekick is a Kubernetes operator for managing sidecar containers. 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/skooner/index.mdx b/src/collections/integrations/skooner/index.mdx index 18b64f69d53a..f92a8c045ded 100644 --- a/src/collections/integrations/skooner/index.mdx +++ b/src/collections/integrations/skooner/index.mdx @@ -15,8 +15,8 @@ featureList: [ "Ongoing synchronization of Kubernetes configuration and changes across any number of clusters." ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Collaborative Infrastructure as Design" howItWorksDetails: "Collaboratively manage infrastructure with your coworkers synchronously sharing the same designs." @@ -29,5 +29,5 @@ Simple Kubernetes real-time dashboard and management. 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/slack-operator/index.mdx b/src/collections/integrations/slack-operator/index.mdx index 9804044bc4bc..162d42e925ce 100644 --- a/src/collections/integrations/slack-operator/index.mdx +++ b/src/collections/integrations/slack-operator/index.mdx @@ -21,8 +21,8 @@ featureList: [ "Integrates with Kubernetes events" ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Integrates Slack notifications" howItWorksDetails: "Improved incident response and communication within Kubernetes" @@ -35,5 +35,5 @@ Slack Operator is a Kubernetes operator for sending notifications to Slack chann 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/sm-kubernetes/index.mdx b/src/collections/integrations/sm-kubernetes/index.mdx index aad6a263cef3..b101da9108f8 100644 --- a/src/collections/integrations/sm-kubernetes/index.mdx +++ b/src/collections/integrations/sm-kubernetes/index.mdx @@ -15,8 +15,8 @@ featureList: [ "Synchronizes Bitwarden secrets into Kubernetes secrets." ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Streamlined Bitwarden secrets management in Kubernetes" howItWorksDetails: "The sm-operator uses a controller to synchronize Bitwarden secrets into Kubernetes secrets. " @@ -29,5 +29,5 @@ The Bitwarden Secrets Manager Kubernetes Operator (sm-operator) is a tool for te 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/solr-operator/index.mdx b/src/collections/integrations/solr-operator/index.mdx index c9589b1d2344..829047479202 100644 --- a/src/collections/integrations/solr-operator/index.mdx +++ b/src/collections/integrations/solr-operator/index.mdx @@ -33,8 +33,8 @@ featureList: [ "Ongoing synchronization of Kubernetes configuration and changes across any number of clusters." ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Collaborative Infrastructure as Design" howItWorksDetails: "Collaboratively manage infrastructure with your coworkers synchronously sharing the same designs." @@ -47,5 +47,5 @@ Solr is highly reliable, scalable and fault tolerant, providing distributed inde 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/spiffe/index.mdx b/src/collections/integrations/spiffe/index.mdx index e1d79cc2645c..54d4b6082346 100644 --- a/src/collections/integrations/spiffe/index.mdx +++ b/src/collections/integrations/spiffe/index.mdx @@ -15,8 +15,8 @@ featureList: [ "Simplify access from identified services to secret stores, databases, services meshes and cloud provider services." ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Wrangle the Workload API" howItWorksDetails: "Expertly use the Workload API specification to issue and retrieve SVIDs." @@ -32,5 +32,5 @@ The SPIFFE Project 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/spire/index.mdx b/src/collections/integrations/spire/index.mdx index c012834c9246..56c2fad8633f 100644 --- a/src/collections/integrations/spire/index.mdx +++ b/src/collections/integrations/spire/index.mdx @@ -33,8 +33,8 @@ featureList: [ "Design workloads to establish trust between each other by establishing an mTLS connection or by signing and verifying a JWT token." ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Configure your signing framework" howItWorksDetails: "Simplify access from identified services to secret stores, databases, services meshes and cloud provider services." @@ -50,5 +50,5 @@ The SPIFFE Runtime Environment 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/stackgres-operator/index.mdx b/src/collections/integrations/stackgres-operator/index.mdx index 2e7c3b275d65..5a24020a1374 100644 --- a/src/collections/integrations/stackgres-operator/index.mdx +++ b/src/collections/integrations/stackgres-operator/index.mdx @@ -105,8 +105,8 @@ featureList: [ "Ongoing synchronization of Kubernetes configuration and changes across any number of clusters." ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Collaborative Infrastructure as Design" howItWorksDetails: "Collaboratively manage infrastructure with your coworkers synchronously sharing the same designs." @@ -121,5 +121,5 @@ Deploy in minutes an Enterprise-Grade Postgres-as-a-Service, in your infrastruct 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/strimzi-kafka-operator/index.mdx b/src/collections/integrations/strimzi-kafka-operator/index.mdx index 8b2b6b1515f6..c50d8701cd7e 100644 --- a/src/collections/integrations/strimzi-kafka-operator/index.mdx +++ b/src/collections/integrations/strimzi-kafka-operator/index.mdx @@ -81,8 +81,8 @@ featureList: [ "Ongoing synchronization of Kubernetes configuration and changes across any number of clusters." ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Collaborative Infrastructure as Design" howItWorksDetails: "Collaboratively manage infrastructure with your coworkers synchronously sharing the same designs." @@ -95,5 +95,5 @@ Apache Kafka® running on Kubernetes 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/strimzi-registry-operator/index.mdx b/src/collections/integrations/strimzi-registry-operator/index.mdx index 47d28efdec8b..874dbd8b2550 100644 --- a/src/collections/integrations/strimzi-registry-operator/index.mdx +++ b/src/collections/integrations/strimzi-registry-operator/index.mdx @@ -21,8 +21,8 @@ featureList: [ "Ongoing synchronization of Kubernetes configuration and changes across any number of clusters." ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Collaborative Infrastructure as Design" howItWorksDetails: "Collaboratively manage infrastructure with your coworkers synchronously sharing the same designs." @@ -35,5 +35,5 @@ Apache Kafka® running on Kubernetes 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/submariner/index.mdx b/src/collections/integrations/submariner/index.mdx index c3ba8e1df52e..745520eef2ad 100644 --- a/src/collections/integrations/submariner/index.mdx +++ b/src/collections/integrations/submariner/index.mdx @@ -33,8 +33,8 @@ featureList: [ "Ongoing synchronization of Kubernetes configuration and changes across any number of clusters." ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Collaborative Infrastructure as Design" howItWorksDetails: "Collaboratively manage infrastructure with your coworkers synchronously sharing the same designs." @@ -47,5 +47,5 @@ Submariner enables direct networking between Pods and Services in different Kube 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/supabase/index.mdx b/src/collections/integrations/supabase/index.mdx index 73af4b817c74..2d03fe3963b2 100644 --- a/src/collections/integrations/supabase/index.mdx +++ b/src/collections/integrations/supabase/index.mdx @@ -87,8 +87,8 @@ featureList: [ "Ongoing synchronization of Kubernetes configuration and changes across any number of clusters." ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Collaborative Infrastructure as Design" howItWorksDetails: "Collaboratively manage infrastructure with your coworkers synchronously sharing the same designs." @@ -101,5 +101,5 @@ Enables Kubernetes applications to access cloud resources securely with Azure Ac 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/superedge/index.mdx b/src/collections/integrations/superedge/index.mdx index 2d328e51f617..35a3cfaf8826 100644 --- a/src/collections/integrations/superedge/index.mdx +++ b/src/collections/integrations/superedge/index.mdx @@ -15,8 +15,8 @@ featureList: [ "Ongoing synchronization of Kubernetes configuration and changes across any number of clusters." ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Collaborative Infrastructure as Design" howItWorksDetails: "Collaboratively manage infrastructure with your coworkers synchronously sharing the same designs." @@ -29,5 +29,5 @@ An edge-native container management system for edge computing 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/telepresence/index.mdx b/src/collections/integrations/telepresence/index.mdx index 46da8fe233e8..8b248d677750 100644 --- a/src/collections/integrations/telepresence/index.mdx +++ b/src/collections/integrations/telepresence/index.mdx @@ -15,8 +15,8 @@ featureList: [ "Ongoing synchronization of Kubernetes configuration and changes across any number of clusters." ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Collaborative Infrastructure as Design" howItWorksDetails: "Collaboratively manage infrastructure with your coworkers synchronously sharing the same designs." @@ -29,5 +29,5 @@ Local development against a remote Kubernetes or OpenShift cluster 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/teller/index.mdx b/src/collections/integrations/teller/index.mdx index 9d3964c498df..b62dabe48a04 100644 --- a/src/collections/integrations/teller/index.mdx +++ b/src/collections/integrations/teller/index.mdx @@ -15,8 +15,8 @@ featureList: [ "Ongoing synchronization of Kubernetes configuration and changes across any number of clusters." ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Collaborative Infrastructure as Design" howItWorksDetails: "Collaboratively manage infrastructure with your coworkers synchronously sharing the same designs." @@ -29,5 +29,5 @@ Cloud native secrets management for developers - never leave your command line f 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/tenant-operator/index.mdx b/src/collections/integrations/tenant-operator/index.mdx index e8cf1bb1aa8b..608da0c51e55 100644 --- a/src/collections/integrations/tenant-operator/index.mdx +++ b/src/collections/integrations/tenant-operator/index.mdx @@ -57,8 +57,8 @@ featureList: [ "Simplifies tenant management" ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Integrates with Tenant Operator" howItWorksDetails: "Improved isolation and management of tenants within Kubernetes" @@ -71,5 +71,5 @@ Tenant Operator is a Kubernetes operator for managing multi-tenancy in Kubernete 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/terraform/index.mdx b/src/collections/integrations/terraform/index.mdx index 5f366de78a87..9e99e2a756ae 100644 --- a/src/collections/integrations/terraform/index.mdx +++ b/src/collections/integrations/terraform/index.mdx @@ -21,8 +21,8 @@ featureList: [ "Infrastructure automation" ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Integrates Terraform configurations" howItWorksDetails: "Infrastructure as code management within Kubernetes" @@ -35,5 +35,5 @@ Terraform is an infrastructure as code (IaC) tool for provisioning and managing 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/thanos-operator/index.mdx b/src/collections/integrations/thanos-operator/index.mdx index 9253a467d2a1..606024393e41 100644 --- a/src/collections/integrations/thanos-operator/index.mdx +++ b/src/collections/integrations/thanos-operator/index.mdx @@ -51,8 +51,8 @@ featureList: [ "Ongoing synchronization of Kubernetes configuration and changes across any number of clusters." ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Collaborative Infrastructure as Design" howItWorksDetails: "Collaboratively manage infrastructure with your coworkers synchronously sharing the same designs." @@ -65,5 +65,5 @@ Highly available Prometheus setup with long term storage capabilities. A CNCF In 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/thanos/index.mdx b/src/collections/integrations/thanos/index.mdx index 4037f94d821a..c4f1ca313afe 100644 --- a/src/collections/integrations/thanos/index.mdx +++ b/src/collections/integrations/thanos/index.mdx @@ -15,8 +15,8 @@ featureList: [ "Ongoing synchronization of Kubernetes configuration and changes across any number of clusters." ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Collaborative Infrastructure as Design" howItWorksDetails: "Collaboratively manage infrastructure with your coworkers synchronously sharing the same designs." @@ -29,5 +29,5 @@ Highly available Prometheus setup with long term storage capabilities. A CNCF In 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/tikv-operator/index.mdx b/src/collections/integrations/tikv-operator/index.mdx index df5d9e728f70..954bf8294d7f 100644 --- a/src/collections/integrations/tikv-operator/index.mdx +++ b/src/collections/integrations/tikv-operator/index.mdx @@ -15,8 +15,8 @@ featureList: [ "Ongoing synchronization of Kubernetes configuration and changes across any number of clusters." ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Collaborative Infrastructure as Design" howItWorksDetails: "Collaboratively manage infrastructure with your coworkers synchronously sharing the same designs." @@ -29,5 +29,5 @@ A distributed transactional key-value database. Based on the design of Google Sp 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/tinkerbell/index.mdx b/src/collections/integrations/tinkerbell/index.mdx index 52f30b035daa..0d94bb3a2504 100644 --- a/src/collections/integrations/tinkerbell/index.mdx +++ b/src/collections/integrations/tinkerbell/index.mdx @@ -51,8 +51,8 @@ featureList: [ "Ongoing synchronization of Kubernetes configuration and changes across any number of clusters." ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Collaborative Infrastructure as Design" howItWorksDetails: "Collaboratively manage infrastructure with your coworkers synchronously sharing the same designs." @@ -65,5 +65,5 @@ A workflow engine for provisioning bare metal. 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/tremor/index.mdx b/src/collections/integrations/tremor/index.mdx index 0bbb15f3a8b7..7656eb0ffd9b 100644 --- a/src/collections/integrations/tremor/index.mdx +++ b/src/collections/integrations/tremor/index.mdx @@ -15,8 +15,8 @@ featureList: [ "Ongoing synchronization of Kubernetes configuration and changes across any number of clusters." ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Collaborative Infrastructure as Design" howItWorksDetails: "Collaboratively manage infrastructure with your coworkers synchronously sharing the same designs." @@ -29,5 +29,5 @@ Main Tremor Project Rust Codebase 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/trickster/index.mdx b/src/collections/integrations/trickster/index.mdx index 7fbcdc5d86e6..eb2bf490980f 100644 --- a/src/collections/integrations/trickster/index.mdx +++ b/src/collections/integrations/trickster/index.mdx @@ -51,8 +51,8 @@ featureList: [ "Ongoing synchronization of Kubernetes configuration and changes across any number of clusters." ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Collaborative Infrastructure as Design" howItWorksDetails: "Collaboratively manage infrastructure with your coworkers synchronously sharing the same designs." @@ -65,5 +65,5 @@ Open Source HTTP Reverse Proxy Cache and Time Series Dashboard Accelerator 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/tuf/index.mdx b/src/collections/integrations/tuf/index.mdx index a1a90bb3838e..49360a3410d5 100644 --- a/src/collections/integrations/tuf/index.mdx +++ b/src/collections/integrations/tuf/index.mdx @@ -15,8 +15,8 @@ featureList: [ "Ongoing synchronization of Kubernetes configuration and changes across any number of clusters." ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Collaborative Infrastructure as Design" howItWorksDetails: "Collaboratively manage infrastructure with your coworkers synchronously sharing the same designs." @@ -29,5 +29,5 @@ Python reference implementation of The Update Framework (TUF) 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/vald-helm-operator/index.mdx b/src/collections/integrations/vald-helm-operator/index.mdx index 31a52f7f3a2e..8b59468c8867 100644 --- a/src/collections/integrations/vald-helm-operator/index.mdx +++ b/src/collections/integrations/vald-helm-operator/index.mdx @@ -27,8 +27,8 @@ featureList: [ "Integrates with Kubernetes resources" ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Deploys and manages Vald" howItWorksDetails: "Simplified Vald management within Kubernetes" @@ -41,5 +41,5 @@ Vald Helm Operator is a Kubernetes operator for managing Vald deployments. 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/vald/index.mdx b/src/collections/integrations/vald/index.mdx index dd0aea4bae68..695c6ee02b5f 100644 --- a/src/collections/integrations/vald/index.mdx +++ b/src/collections/integrations/vald/index.mdx @@ -21,8 +21,8 @@ featureList: [ "Large-scale data processing" ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Integrates with Vald" howItWorksDetails: "Enhanced search capabilities within Kubernetes" @@ -35,5 +35,5 @@ Vald is a highly scalable distributed vector search engine. 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/vault-config-operator/index.mdx b/src/collections/integrations/vault-config-operator/index.mdx index ac65218926e4..9545435a1111 100644 --- a/src/collections/integrations/vault-config-operator/index.mdx +++ b/src/collections/integrations/vault-config-operator/index.mdx @@ -219,8 +219,8 @@ featureList: [ "Integrates with Kubernetes resources" ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Manages Vault configurations" howItWorksDetails: "Streamlined Vault configuration management within Kubernetes" @@ -233,5 +233,5 @@ Vault Config Operator is a Kubernetes operator for managing HashiCorp Vault conf 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/vault-operator/index.mdx b/src/collections/integrations/vault-operator/index.mdx index ce16f844cac1..59b842620050 100644 --- a/src/collections/integrations/vault-operator/index.mdx +++ b/src/collections/integrations/vault-operator/index.mdx @@ -21,8 +21,8 @@ featureList: [ "Integrates with Kubernetes resources" ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Deploys and manages Vault" howItWorksDetails: "Simplified Vault management within Kubernetes" @@ -35,5 +35,5 @@ Vault Operator is a Kubernetes operator for managing HashiCorp Vault instances. 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/vault-secrets/index.mdx b/src/collections/integrations/vault-secrets/index.mdx index 4ce3c8b3ef61..5f675e6e52ae 100644 --- a/src/collections/integrations/vault-secrets/index.mdx +++ b/src/collections/integrations/vault-secrets/index.mdx @@ -75,8 +75,8 @@ featureList: [ "Integrates with Kubernetes secrets" ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Manages Vault secrets" howItWorksDetails: "Improved secret management and security within Kubernetes" @@ -89,5 +89,5 @@ Vault Secrets is a Kubernetes operator for syncing secrets from HashiCorp Vault. 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/vela-workflow/index.mdx b/src/collections/integrations/vela-workflow/index.mdx index 8d95e44ab0a0..02b71b4869b2 100644 --- a/src/collections/integrations/vela-workflow/index.mdx +++ b/src/collections/integrations/vela-workflow/index.mdx @@ -33,8 +33,8 @@ featureList: [ "Customizable pipeline steps" ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Integrates with Vela workflows" howItWorksDetails: "Flexible and customizable CI/CD workflows in Kubernetes" @@ -47,5 +47,5 @@ Vela Workflow is a component of Vela for defining and executing complex CI/CD wo 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/velero-s3-deployment/index.mdx b/src/collections/integrations/velero-s3-deployment/index.mdx index e5b43ab574ae..975fbd544876 100644 --- a/src/collections/integrations/velero-s3-deployment/index.mdx +++ b/src/collections/integrations/velero-s3-deployment/index.mdx @@ -81,8 +81,8 @@ featureList: [ "Supports object versioning and encryption" ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Integrates with Velero S3 backups" howItWorksDetails: "Reliable and secure backups of Kubernetes resources to Amazon S3" @@ -95,5 +95,5 @@ Velero S3 Deployment is a configuration for using Velero with Amazon S3 as a bac 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/victoria-metrics-k8s-stack/index.mdx b/src/collections/integrations/victoria-metrics-k8s-stack/index.mdx index a9f83600787a..59d528307097 100644 --- a/src/collections/integrations/victoria-metrics-k8s-stack/index.mdx +++ b/src/collections/integrations/victoria-metrics-k8s-stack/index.mdx @@ -111,8 +111,8 @@ featureList: [ "Ongoing synchronization of Kubernetes configuration and changes across any number of clusters." ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Collaborative Infrastructure as Design" howItWorksDetails: "Collaboratively manage infrastructure with your coworkers synchronously sharing the same designs." @@ -125,5 +125,5 @@ VictoriaMetrics K8S Stack is a Helm chart for deploying VictoriaMetrics, a high- 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/vineyard/index.mdx b/src/collections/integrations/vineyard/index.mdx index 859fc12add2f..e02de7076663 100644 --- a/src/collections/integrations/vineyard/index.mdx +++ b/src/collections/integrations/vineyard/index.mdx @@ -63,8 +63,8 @@ featureList: [ "Ongoing synchronization of Kubernetes configuration and changes across any number of clusters." ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Collaborative Infrastructure as Design" howItWorksDetails: "Collaboratively manage infrastructure with your coworkers synchronously sharing the same designs." @@ -77,5 +77,5 @@ Vineyard (v6d) is an in-memory immutable data manager. 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/virtual-kubelet/index.mdx b/src/collections/integrations/virtual-kubelet/index.mdx index 30fc24fc5fe9..fd2063061da8 100644 --- a/src/collections/integrations/virtual-kubelet/index.mdx +++ b/src/collections/integrations/virtual-kubelet/index.mdx @@ -15,8 +15,8 @@ featureList: [ "Ongoing synchronization of Kubernetes configuration and changes across any number of clusters." ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Collaborative Infrastructure as Design" howItWorksDetails: "Collaboratively manage infrastructure with your coworkers synchronously sharing the same designs." @@ -29,5 +29,5 @@ Virtual Kubelet is an open source Kubernetes kubelet implementation. 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/vitess/index.mdx b/src/collections/integrations/vitess/index.mdx index 3d39f37e0814..72bb59963c24 100644 --- a/src/collections/integrations/vitess/index.mdx +++ b/src/collections/integrations/vitess/index.mdx @@ -63,8 +63,8 @@ featureList: [ "Ongoing synchronization of Kubernetes configuration and changes across any number of clusters." ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Collaborative Infrastructure as Design" howItWorksDetails: "Collaboratively manage infrastructure with your coworkers synchronously sharing the same designs." @@ -77,5 +77,5 @@ Vitess is a database clustering system for horizontal scaling of MySQL. 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/volcano/index.mdx b/src/collections/integrations/volcano/index.mdx index c2cfdfa0cb57..1f227d51c6d1 100644 --- a/src/collections/integrations/volcano/index.mdx +++ b/src/collections/integrations/volcano/index.mdx @@ -45,8 +45,8 @@ featureList: [ "Ongoing synchronization of Kubernetes configuration and changes across any number of clusters." ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Collaborative Infrastructure as Design" howItWorksDetails: "Collaboratively manage infrastructure with your coworkers synchronously sharing the same designs." @@ -59,5 +59,5 @@ A Cloud Native Batch System (Project under CNCF) 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/wasmcloud/index.mdx b/src/collections/integrations/wasmcloud/index.mdx index 4747d55ffa24..f142f235a50a 100644 --- a/src/collections/integrations/wasmcloud/index.mdx +++ b/src/collections/integrations/wasmcloud/index.mdx @@ -15,8 +15,8 @@ featureList: [ "Ongoing synchronization of Kubernetes configuration and changes across any number of clusters." ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Collaborative Infrastructure as Design" howItWorksDetails: "Collaboratively manage infrastructure with your coworkers synchronously sharing the same designs." @@ -29,5 +29,5 @@ Project homepage. wasmCloud allows for simple, secure, distributed application d 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/wasmedgeruntime/index.mdx b/src/collections/integrations/wasmedgeruntime/index.mdx index 29710aedff64..20d37f247832 100644 --- a/src/collections/integrations/wasmedgeruntime/index.mdx +++ b/src/collections/integrations/wasmedgeruntime/index.mdx @@ -15,8 +15,8 @@ featureList: [ "Ongoing synchronization of Kubernetes configuration and changes across any number of clusters." ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Collaborative Infrastructure as Design" howItWorksDetails: "Collaboratively manage infrastructure with your coworkers synchronously sharing the same designs." @@ -29,5 +29,5 @@ WasmEdge is a lightweight, high-performance, and extensible WebAssembly runtime 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/whereabouts/index.mdx b/src/collections/integrations/whereabouts/index.mdx index c13a17102b65..92aa9b8bed8b 100644 --- a/src/collections/integrations/whereabouts/index.mdx +++ b/src/collections/integrations/whereabouts/index.mdx @@ -15,8 +15,8 @@ featureList: [ "Integrates with various CNI plugins" ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Manages IP addresses with Whereabouts" howItWorksDetails: "Simplified IP address management in Kubernetes" @@ -29,5 +29,5 @@ Whereabouts is a CNI IPAM plugin for Kubernetes clusters. It dynamically assigns 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/integrations/windows/index.mdx b/src/collections/integrations/windows/index.mdx index 6aef37c8ef3d..eeb331a9146c 100644 --- a/src/collections/integrations/windows/index.mdx +++ b/src/collections/integrations/windows/index.mdx @@ -15,8 +15,8 @@ featureList: [ "Choose from Scoop or Chocolatey packages" ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Collaborative Infrastructure as Design" howItWorksDetails: "Collaboratively manage infrastructure with your coworkers synchronously sharing the same designs." @@ -26,5 +26,5 @@ published: TRUE Run mesheryctl on your Windows host

    - Run Meshery on your Windows desktop. Use the Scoop package for Meshery's CLI or download `mesheryctl` directly. With `mesheryctl`, you can deploy Meshery locally on your desktop in Docker or in Kubernetes. Alternatively, you can deploy Meshery to a remote Kubernetes cluster. Design, test, and manage configuration of all your cloud infrastructure and containerized applications as a visual topology. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, create and deploy your own cloud native infrastructure designs. + Run Meshery on your Windows desktop. Use the Scoop package for Meshery's CLI or download `mesheryctl` directly. With `mesheryctl`, you can deploy Meshery locally on your desktop in Docker or in Kubernetes. Alternatively, you can deploy Meshery to a remote Kubernetes cluster. Design, test, and manage configuration of all your cloud infrastructure and containerized applications as a visual topology. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, Kanvas, create and deploy your own cloud native infrastructure designs.

    diff --git a/src/collections/integrations/wordpress-operator/index.mdx b/src/collections/integrations/wordpress-operator/index.mdx index 7a33bc2e7e7e..023a0d716c0d 100644 --- a/src/collections/integrations/wordpress-operator/index.mdx +++ b/src/collections/integrations/wordpress-operator/index.mdx @@ -21,8 +21,8 @@ featureList: [ "Ongoing synchronization of Kubernetes configuration and changes across any number of clusters." ] workingSlides: [ - ../_images/meshmap-visualizer.png, - ../_images/meshmap-designer.png + ../_images/kanvas-visualizer.png, + ../_images/kanvas-designer.png ] howItWorks: "Collaborative Infrastructure as Design" howItWorksDetails: "Collaboratively manage infrastructure with your coworkers synchronously sharing the same designs." @@ -35,5 +35,5 @@ Bitpoke WordPress operator enables managing multiple WordPress installments at s 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.

    - Looking for best practice cloud native design and deployment best practices? Choose from thousands of pre-built components in MeshMap. Choose from hundreds of ready-made design patterns by importing templates from Meshery Catalog or use our low code designer, MeshMap, to create and deploy your own cloud native infrastructure designs. + 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.

    diff --git a/src/collections/members/_member-profile-template/index.mdx b/src/collections/members/_member-profile-template/index.mdx index fb31854ec0d6..8bfbfa25a84e 100644 --- a/src/collections/members/_member-profile-template/index.mdx +++ b/src/collections/members/_member-profile-template/index.mdx @@ -24,7 +24,7 @@ badges: # List of badges that this member carries. # - docker-extension # - meshery-catalog # - docs -# - meshmap +# - kanvas blurb: # (Currently not used) Member's tagline, if they have one (a short quip or phrase) status: # [Active | Inactive] maintainer: # [no | yes] Designates whether this member is a project maintainer or not. diff --git a/src/collections/members/aabid-sofi/index.mdx b/src/collections/members/aabid-sofi/index.mdx index 5f1f4b5ee056..dd09eb9a5273 100644 --- a/src/collections/members/aabid-sofi/index.mdx +++ b/src/collections/members/aabid-sofi/index.mdx @@ -9,7 +9,7 @@ location: Srinagar, Jammu & Kashmir, India bio: Hi, I'm Aabid Sofi, a software engineer and web developer. I specialize in creating custom software and web applications that are both functional and visually appealing, with a focus on design, security, and performance. Highly passionate about cloud native and open source . badges: - - meshmap + - kanvas status: Active published: true --- diff --git a/src/collections/members/abhishek-kumar/index.mdx b/src/collections/members/abhishek-kumar/index.mdx index 64ef6e13d085..5f64b6aa050f 100644 --- a/src/collections/members/abhishek-kumar/index.mdx +++ b/src/collections/members/abhishek-kumar/index.mdx @@ -9,7 +9,7 @@ layer5: efbdda42-67a0-4cb8-a968-4ef321eb6369 badges: - meshery - nighthawk - - meshmap + - kanvas location: New Delhi, India bio: I am an undergrad student from Delhi who loves to work on different open-source projects and their development. Thanks to all open source organisations that has groomed me with providing better knowledge and practical implementation of every problem. Have been part of open source orgs like Checkstyle Java, Codeforcause org and Layer5 Meshery that has taught me 90% I know. diff --git a/src/collections/members/akshay-sharma/index.mdx b/src/collections/members/akshay-sharma/index.mdx index b763a7e2dd4b..25dffe0e5a8a 100644 --- a/src/collections/members/akshay-sharma/index.mdx +++ b/src/collections/members/akshay-sharma/index.mdx @@ -9,7 +9,7 @@ layer5: 51f49d2c-0050-4bdb-9bce-fdddcb4742be location: West Bengal, India bio: "Hi,I like to code!" badges: - - meshmap + - kanvas status: Inactive published: true --- diff --git a/src/collections/members/gaurav-chadha/index.mdx b/src/collections/members/gaurav-chadha/index.mdx index ec0abc8e92a3..c901dfdc18c2 100644 --- a/src/collections/members/gaurav-chadha/index.mdx +++ b/src/collections/members/gaurav-chadha/index.mdx @@ -10,7 +10,7 @@ badges: - landscape - meshery - community - - meshmap + - kanvas location: Delhi, India bio: "I am an undergraduate student at IP University majoring in Computer Science and Engineering. I am passionate about open-source, web development, software engineering, and UX/UI designing. My working principle is learning and sharing knowledge. Apart from coding, I love to cook Indian and Italian food as well. Yoga and workout are also in my daily routine." status: Inactive diff --git a/src/collections/members/harkirat/index.mdx b/src/collections/members/harkirat/index.mdx index 3be1f0a6c818..3f80b16fe5b9 100644 --- a/src/collections/members/harkirat/index.mdx +++ b/src/collections/members/harkirat/index.mdx @@ -12,7 +12,7 @@ He is a FullStack Web Developer & is passionate about Open Source & DevOps. He is Open to collaborate on Projects and Believes in Learning By Doing." badges: - meshery -- meshmap +- kanvas status: Inactive published: true --- diff --git a/src/collections/members/pranav-singh/index.mdx b/src/collections/members/pranav-singh/index.mdx index f7fb54d5717a..4ef46836f517 100644 --- a/src/collections/members/pranav-singh/index.mdx +++ b/src/collections/members/pranav-singh/index.mdx @@ -15,7 +15,7 @@ badges: - meshery - meshery-operator - nighthawk - - meshmap + - kanvas status: Inactive published: true --- diff --git a/src/collections/members/senali-dilumika/index.mdx b/src/collections/members/senali-dilumika/index.mdx index 1aabf2fadfb9..327eaec4599b 100644 --- a/src/collections/members/senali-dilumika/index.mdx +++ b/src/collections/members/senali-dilumika/index.mdx @@ -10,7 +10,7 @@ location: Colombo, Sri Lanka bio: Hi, I possess a strong passion for software development. Contributing to Layer5 has been an amazing experience. Collaboration is an excellent way to learn and grow within the tech community. I'm constantly learning new things due to my curiosity and interest in exploring new things. badges: - docs - - meshmap + - kanvas - meshery-catalog status: Inactive published: true diff --git a/src/collections/members/shivam-sood/index.mdx b/src/collections/members/shivam-sood/index.mdx index 64dd50054a4f..2108b993d5c8 100644 --- a/src/collections/members/shivam-sood/index.mdx +++ b/src/collections/members/shivam-sood/index.mdx @@ -11,6 +11,6 @@ bio: "Shivam is an aspiring software engineer, currently graduating from Nationa status: Inactive published: true badges: - - meshmap + - kanvas - landscape --- diff --git a/src/collections/members/usman-siddique/index.mdx b/src/collections/members/usman-siddique/index.mdx index 4eea6a46eec2..0f9a9038788c 100644 --- a/src/collections/members/usman-siddique/index.mdx +++ b/src/collections/members/usman-siddique/index.mdx @@ -9,6 +9,6 @@ status: Inactive location: Lahore, Pakistan bio: Hello, I am a software developer who specializes in MERN stack development. I am passionate about technology and its impact on the world. My love of coding began during my student years, and I quickly became involved in the tech community, eager to learn and share my skills.Throughout my career, I have remained committed to working with the tech community, and I am particularly enthusiastic about open source software. As a result, I joined the Layer 5 community and continue to thrive here, collaborating with other developers and contributing to open source projects. badges: -- meshmap +- kanvas published: true --- diff --git a/src/collections/members/uzair-shaikh/index.mdx b/src/collections/members/uzair-shaikh/index.mdx index 6a1ba0515426..b7bf73eb939c 100644 --- a/src/collections/members/uzair-shaikh/index.mdx +++ b/src/collections/members/uzair-shaikh/index.mdx @@ -12,7 +12,7 @@ badges: - meshery - meshery-operator - nighthawk - - meshmap + - kanvas status: Active published: true --- diff --git a/src/collections/members/yash-sharma/index.mdx b/src/collections/members/yash-sharma/index.mdx index 5118581ac1ff..38a561aa0056 100644 --- a/src/collections/members/yash-sharma/index.mdx +++ b/src/collections/members/yash-sharma/index.mdx @@ -11,7 +11,7 @@ bio: "Hi there! I'm an enthusiastic technology lover who's always on the lookout badges: - meshery - meshery-catalog - - meshmap + - kanvas status: Active meshmate: yes published: true diff --git a/src/collections/news/2022/2022-05-18-meshmark-the-cloud-native-value-measurement/meshmark-the-cloud-native-value-measurement.md b/src/collections/news/2022/2022-05-18-meshmark-the-cloud-native-value-measurement/meshmark-the-cloud-native-value-measurement.md index 551dee58d112..eb20e977b24d 100644 --- a/src/collections/news/2022/2022-05-18-meshmark-the-cloud-native-value-measurement/meshmark-the-cloud-native-value-measurement.md +++ b/src/collections/news/2022/2022-05-18-meshmark-the-cloud-native-value-measurement/meshmark-the-cloud-native-value-measurement.md @@ -18,7 +18,7 @@ published: true --- import { Link } from "gatsby"; import Formula from "./MeshMark-Formula.webp"; -import MeshmapMeshmark from "./meshmark-score.webp"; +import MeshMapMeshmark from "./meshmark-score.webp"; import { NewsWrapper } from "../../News.style.js"; import Blockquote from "../../../../reusecore/Blockquote"; import BlockquoteAlt from "../../../../reusecore/Blockquote/Blockquote-alt-style"; @@ -39,7 +39,7 @@ VALENCIA, Spain (May 17th, 2022) - ServiceMeshCon EU /KubeCon EU - +MeshMark in Layer5 MeshMap

    By specifying a uniform way to analyze and report on the degree to which measured performance provides business value, MeshMark converts these metrics into insights about the efficiency and value of the functions your cloud native infrastructure is providing to your applications and services. diff --git a/src/collections/resources/articles/kubernetes/getting-started-with-kubernetes/MeshmapDesigner.webp b/src/collections/resources/articles/kubernetes/getting-started-with-kubernetes/KanvasDesigner.webp similarity index 100% rename from src/collections/resources/articles/kubernetes/getting-started-with-kubernetes/MeshmapDesigner.webp rename to src/collections/resources/articles/kubernetes/getting-started-with-kubernetes/KanvasDesigner.webp diff --git a/src/collections/resources/articles/kubernetes/getting-started-with-kubernetes/MeshmapVisualizer.webp b/src/collections/resources/articles/kubernetes/getting-started-with-kubernetes/KanvasVisualizer.webp similarity index 100% rename from src/collections/resources/articles/kubernetes/getting-started-with-kubernetes/MeshmapVisualizer.webp rename to src/collections/resources/articles/kubernetes/getting-started-with-kubernetes/KanvasVisualizer.webp diff --git a/src/collections/resources/articles/kubernetes/getting-started-with-kubernetes/index.mdx b/src/collections/resources/articles/kubernetes/getting-started-with-kubernetes/index.mdx index 6ebe3e011bdb..5d10e0b00879 100644 --- a/src/collections/resources/articles/kubernetes/getting-started-with-kubernetes/index.mdx +++ b/src/collections/resources/articles/kubernetes/getting-started-with-kubernetes/index.mdx @@ -15,18 +15,18 @@ resource: true import { ResourcesWrapper } from "../../../Resources.style.js"; import picture1 from "./Picture1.webp"; import ClusterImg from "./multi-cluster-kubernetes-management-with-meshery.webp"; -import MeshmapDesigner from "./MeshmapDesigner.webp" -import MeshmapVisualizer from "./MeshmapVisualizer.webp" +import KanvasDesigner from "./KanvasDesigner.webp" +import KanvasVisualizer from "./KanvasVisualizer.webp" - -

    Kubernetes, an open-source container orchestration platform, is growing in popularity for deploying and managing cloud-native applications. Kubernetes was created by Google in 2014, and it is now used by many major companies, including IBM, Microsoft, Red Hat, and Amazon. -In this article, we'll talk about Kubernetes, its benefits, and the best ways for your organization to use it. +

    +Kubernetes, an open-source container orchestration platform, is growing in popularity for deploying and managing cloud-native applications. Kubernetes was created by Google in 2014, and it is now used by many major companies, including IBM, Microsoft, Red Hat, and Amazon. In this article, we'll talk about Kubernetes, its benefits, and the best ways for your organization to use it.

    What is Kubernetes?

    -

    Kubernetes offers fully managed and adapted architecture services that optimize your cloud-native application. Kubernetes is a platform that hides virtual machines, shows the infrastructure as an infrastructure-as-a-service (IAAS), network, and load balancer, and offers data storage and operations that are consistent across containers. +

    +Kubernetes offers fully managed and adapted architecture services that optimize your cloud-native application. Kubernetes is a platform that hides virtual machines, shows the infrastructure as an infrastructure-as-a-service (IAAS), network, and load balancer, and offers data storage and operations that are consistent across containers.

    For example, Kubernetes nodes work as Kubernetes containers, such as an application, an application server, and control processes in Docker containers. Kubernetes components such as Kubernetes nodes and Kubernetes containers can be defined or modified via configuration files or can be specified subsequently. Individual Kubernetes components can be scaled according to elasticity needs to optimize performance.

    @@ -35,7 +35,8 @@ In this article, we'll talk about Kubernetes, its benefits, and the best ways fo

    What's the Difference between Kubernetes and Docker?

    -

    Over the past few years, containers have become increasingly popular within the software development community, and they have now evolved into two major platforms — Docker and Kubernetes. Both are incredibly powerful tools that allow developers to containerize their applications, but they are also slightly different in a number of ways, with more differences on the horizon as Docker announces its new focus on Kubernetes and containers orchestration. How do you decide which one to use? What does the future hold for each? Here’s what you need to know about the difference between Docker and Kubernetes. +

    +Over the past few years, containers have become increasingly popular within the software development community, and they have now evolved into two major platforms — Docker and Kubernetes. Both are incredibly powerful tools that allow developers to containerize their applications, but they are also slightly different in a number of ways, with more differences on the horizon as Docker announces its new focus on Kubernetes and containers orchestration. How do you decide which one to use? What does the future hold for each? Here’s what you need to know about the difference between Docker and Kubernetes.

    Docker is an open-source platform designed to help developers and IT professionals create, deploy, and run applications. This containerization technology is often used in conjunction with orchestration software such as Kubernetes. However, these two technologies are not interchangeable; they serve different purposes.

    @@ -62,49 +63,54 @@ In this article, we'll talk about Kubernetes, its benefits, and the best ways fo

    Best Practices for Kubernetes

    -

    Kubernetes is a container orchestration platform created by Google in 2014. It provides a way for companies to build fully self-sufficient, scalable, multi-container applications every time they need to deploy and manage their own containers. It's aimed at pretty much the same audience as Docker and other container orchestration platforms—that is, organizations that run containerized applications and want to deploy scalable, repeatable deployments. +

    +Kubernetes is a container orchestration platform created by Google in 2014. It provides a way for companies to build fully self-sufficient, scalable, multi-container applications every time they need to deploy and manage their own containers. It's aimed at pretty much the same audience as Docker and other container orchestration platforms—that is, organizations that run containerized applications and want to deploy scalable, repeatable deployments.

    -

    At the most basic and most simplistic level, a group of containers (usually 16) is cross-linked together in a cluster, based on Docker. Containers run inside a cluster of virtual machines (Kubernetes VM) as a single Linux file system. Kubernetes organizes the creation, deletion, and management of containers into container concepts that provide fault tolerance, availability, scaling, permission management, and secure containers that should be able to run together and share resources. Each host runs one or more containers, providing the abstraction of which containers can run on which hosts. +

    +At the most basic and most simplistic level, a group of containers (usually 16) is cross-linked together in a cluster, based on Docker. Containers run inside a cluster of virtual machines (Kubernetes VM) as a single Linux file system. Kubernetes organizes the creation, deletion, and management of containers into container concepts that provide fault tolerance, availability, scaling, permission management, and secure containers that should be able to run together and share resources. Each host runs one or more containers, providing the abstraction of which containers can run on which hosts.

    -

    Since Kubernetes services are usually very easy to use, the user experience is very similar to that of centralized solutions.

    +

    Since Kubernetes services are usually very easy to use, the user experience is very similar to that of centralized solutions.

    -

    With Kubernetes, businesses can make data repositories and containers, federate their resources in an efficient way, manage billing, certify capacity, quota, access rights, and more.

    +

    With Kubernetes, businesses can make data repositories and containers, federate their resources in an efficient way, manage billing, certify capacity, quota, access rights, and more.

    -

    It can scale to many nodes simultaneously, so when their machines scale up, then their containers could scale up too.

    +

    It can scale to many nodes simultaneously, so when their machines scale up, then their containers could scale up too.

    -

    Kubernetes Concepts and Terminology

    +

    Kubernetes Concepts and Terminology

    -

    Kubernetes was developed in 2014 as a Google container orchestrator, a container scheduler and more. Kubernetes was created to manage distributed applications, including Docker containers. According to SUSE, Kubernetes is simple to learn, easy to manage, and supports an on-premise, private, public, or hybrid architecture. Kubernetes is flexible enough to be split up over many servers in your data center.

    +

    Kubernetes was developed in 2014 as a Google container orchestrator, a container scheduler and more. Kubernetes was created to manage distributed applications, including Docker containers. According to SUSE, Kubernetes is simple to learn, easy to manage, and supports an on-premise, private, public, or hybrid architecture. Kubernetes is flexible enough to be split up over many servers in your data center.

    -

    This simplificator, one example of many, allows one to scale independent containers.

    +

    This simplificator, one example of many, allows one to scale independent containers.

    -

    Let's understand better what Kubernetes is:

    +

    Let's understand better what Kubernetes is:

    -

    In an application ecosystem of operating system Docker containers, Kubernetes acts as a centralized management guided by distributed logic. Kubernetes can be used to deliver web traffic, graphics work, or IP traffic from IoT devices. The main benefit is that clusters can be easily expanded to a huge size with all functions.

    +

    In an application ecosystem of operating system Docker containers, Kubernetes acts as a centralized management guided by distributed logic. Kubernetes can be used to deliver web traffic, graphics work, or IP traffic from IoT devices. The main benefit is that clusters can be easily expanded to a huge size with all functions.

    -

    What are pods? Pods are Docker instances that you can use to deploy your containers in environments like Kubernetes, which can be private, public, or a mix of the two. +

    +What are pods? Pods are Docker instances that you can use to deploy your containers in environments like Kubernetes, which can be private, public, or a mix of the two.

    -

    Environments may be private services or public clouds.

    +

    Environments may be private services or public clouds.

    -

    Kubernetes can be used to manage containers because they are easy to use and make it easy to scale your containers.

    +

    Kubernetes can be used to manage containers because they are easy to use and make it easy to scale your containers.

    -

    Installation tutorials are sometimes yoinked without ever reading the help.

    +

    Installation tutorials are sometimes yoinked without ever reading the help.

    -

    RBAC and Firewall Security

    +

    RBAC and Firewall Security

    -

    Today, everything is hackable, and so is your Kubernetes cluster. Hackers often try to find vulnerabilities in the system in order to exploit them and gain access. So, keeping your Kubernetes cluster secure should be a high priority. The first thing to do is make sure you are using RBAC in Kubernetes. RBAC is role-based access control. Assign roles to each user in your cluster and to each service account running in your cluster. Roles in RBAC contain several permissions that a user or service account can perform. You can assign the same role to multiple people, and each role can have multiple permissions. +

    +Today, everything is hackable, and so is your Kubernetes cluster. Hackers often try to find vulnerabilities in the system in order to exploit them and gain access. So, keeping your Kubernetes cluster secure should be a high priority. The first thing to do is make sure you are using RBAC in Kubernetes. RBAC is role-based access control. Assign roles to each user in your cluster and to each service account running in your cluster. Roles in RBAC contain several permissions that a user or service account can perform. You can assign the same role to multiple people, and each role can have multiple permissions.

    -

    RBAC settings can also be applied to namespaces, so if you assign roles to a user allowed in one namespace, they will not have access to other namespaces in the cluster. Kubernetes provides RBAC properties such as role and cluster role to define security policies.

    +

    RBAC settings can also be applied to namespaces, so if you assign roles to a user allowed in one namespace, they will not have access to other namespaces in the cluster. Kubernetes provides RBAC properties such as role and cluster role to define security policies.

    -

    You can create a firewall for your API server to prevent attackers from sending connection requests to your API server from the Internet. To do this, you can either use regular firewalling rules or port firewalling rules. If you are using something like GKE, you can use a master authorized network feature in order to limit the IP addresses that can access the API server.

    +

    You can create a firewall for your API server to prevent attackers from sending connection requests to your API server from the Internet. To do this, you can either use regular firewalling rules or port firewalling rules. If you are using something like GKE, you can use a master authorized network feature in order to limit the IP addresses that can access the API server.

    Managing Kubernetes Clusters

    -

    Kubernetes is a project that lets you create and manage individual containers or a container cluster on a mainframe. Clusters may consist of physical, virtual, or cloud-based computing resources. +

    +Kubernetes is a project that lets you create and manage individual containers or a container cluster on a mainframe. Clusters may consist of physical, virtual, or cloud-based computing resources.

    -

    The Kubernetes projects auto-deploy container clusters anywhere there is a pluggable environment and an open-source base that includes system-config service, service account manager, and kubelet. So, developers and system administrators can easily put containers on a single machine or on nodes of machines in any scalable cluster to save money and time. +

    +The Kubernetes projects auto-deploy container clusters anywhere there is a pluggable environment and an open-source base that includes system-config service, service account manager, and kubelet. So, developers and system administrators can easily put containers on a single machine or on nodes of machines in any scalable cluster to save money and time.

    -

    Kubernetes is an open-source system for automating the deployment, scaling, and management of containerized applications. Kubernetes was made by Google, and the Cloud Native Computing Foundation now takes care of it. +

    +Kubernetes is an open-source system for automating the deployment, scaling, and management of containerized applications. Kubernetes was made by Google, and the Cloud Native Computing Foundation now takes care of it.

    -

    Kubernetes Cluster Visualization and Designing using MeshMap

    -

    MeshMap has been developed for visualizing and managing kubernetes clusters. You can learn more about MeshMap here +

    Kubernetes Cluster Visualization and Designing using Kanvas

    + +

    +Kanvas has been developed for visualizing and managing kubernetes clusters. You can learn more about Kanvas here

    +

    Users can drag-and-drop your cloud native infrastructure using a palette of thousands of versioned Kubernetes components. Integrate advanced performance analysis into your pipeline.

    - Kubernetes Architecture + Kubernetes Architecture

    Users can deploy their designs, apply patterns, manage and operate their deployments in real-time bringing all the Kubernetes clusters under a common point of management. Interactively connect to terminal sessions or initiate and search log streams from your containers.

    - Kubernetes Architecture + Kubernetes Architecture

    Set Resource Requests & Limits

    Occasionally, deploying an application to a production cluster can fail due to the limited resources available on that cluster. This is a common challenge when working with a Kubernetes cluster, and it’s caused when resource requests and limits are not set. Without resource requests and limits, pods in a cluster can start utilizing more resources than required. If the pod starts consuming more CPU or memory on the node, then the scheduler may not be able to place new pods, and even the node itself may crash. Resource requests specify the minimum amount of resources a container can use.

    - -

    For both requests and limits, it’s typical to define CPU in millicores and memory in megabytes or mebibytes. Containers in a pod do not run if the request for resources made is higher than the limit you set. + +

    +For both requests and limits, it’s typical to define CPU in millicores and memory in megabytes or mebibytes. Containers in a pod do not run if the request for resources made is higher than the limit you set.

    -

    In this example, we have set the limit of the CPU to 800 millicores and the memory to 256 mebibytes. The maximum request which the container can make at a time is 400 millicores of CPU and 128 mebibyte of memory. +

    +In this example, we have set the limit of the CPU to 800 millicores and the memory to 256 mebibytes. The maximum request which the container can make at a time is 400 millicores of CPU and 128 mebibyte of memory.

    Guide to Containers

    -

    Containers have been around for a while, but it wasn’t until Docker came along that they really took off. In its early days, developers were using it to build their applications in containers. Now companies like Walmart are using containers to deploy their entire infrastructure. +

    +Containers have been around for a while, but it wasn’t until Docker came along that they really took off. In its early days, developers were using it to build their applications in containers. Now companies like Walmart are using containers to deploy their entire infrastructure.

    -

    Containers are lighter-weight than virtual machines because they don't need to emulate an entire operating system. This is why containers are typically faster to start up and use less resources. However, containers cannot be moved between hosts like virtual machines can, so a more robust solution may be needed for this use case. +

    +Containers are lighter-weight than virtual machines because they don't need to emulate an entire operating system. This is why containers are typically faster to start up and use less resources. However, containers cannot be moved between hosts like virtual machines can, so a more robust solution may be needed for this use case.

    -

    Because they're so lightweight and take up less space than VMs do, containers are great for running lots of them at once! If your application needs more computing power or memory than your machine can provide on its own, using multiple containers in parallel will help balance out any resource shortages without having to invest in additional physical hardware like you would with traditional VM-based deployments. +

    +Because they're so lightweight and take up less space than VMs do, containers are great for running lots of them at once! If your application needs more computing power or memory than your machine can provide on its own, using multiple containers in parallel will help balance out any resource shortages without having to invest in additional physical hardware like you would with traditional VM-based deployments.

    As they're isolated from each other, containers are great for running multiple apps at once without worrying about them stepping all over each other's toes! This makes them perfect for things like hosting websites or email services where you want lots of different people to be able to use it at the same time without slowing down or crashing because there's not enough resources available for everyone.

    What's more, since they're so easy to spin up and take down, they're also great for testing out new ideas quickly without having to worry about making permanent changes to your system (or losing any data along the way!). So if you want to try out a new CMS but don't want to go through the trouble of installing it on your machine first, just fire up a container with it inside and see how it goes!

    -

    One downside to using containers is that they can't easily be moved between hosts like virtual machines can, so a more robust solution may be needed for this use case. Fortunately, there are some great open source projects out there that help solve this problem! +

    +One downside to using containers is that they can't easily be moved between hosts like virtual machines can, so a more robust solution may be needed for this use case. Fortunately, there are some great open source projects out there that help solve this problem!

    Conclusion

    diff --git a/src/collections/resources/case-study/hpes-adoption-of-meshery-and-meshmap/globe.svg b/src/collections/resources/case-study/hpes-adoption-of-meshery-and-kanvas/globe.svg similarity index 100% rename from src/collections/resources/case-study/hpes-adoption-of-meshery-and-meshmap/globe.svg rename to src/collections/resources/case-study/hpes-adoption-of-meshery-and-kanvas/globe.svg diff --git a/src/collections/resources/case-study/hpes-adoption-of-meshery-and-meshmap/hpe.style.js b/src/collections/resources/case-study/hpes-adoption-of-meshery-and-kanvas/hpe.style.js similarity index 100% rename from src/collections/resources/case-study/hpes-adoption-of-meshery-and-meshmap/hpe.style.js rename to src/collections/resources/case-study/hpes-adoption-of-meshery-and-kanvas/hpe.style.js diff --git a/src/collections/resources/case-study/hpes-adoption-of-meshery-and-meshmap/index.mdx b/src/collections/resources/case-study/hpes-adoption-of-meshery-and-kanvas/index.mdx similarity index 97% rename from src/collections/resources/case-study/hpes-adoption-of-meshery-and-meshmap/index.mdx rename to src/collections/resources/case-study/hpes-adoption-of-meshery-and-kanvas/index.mdx index 60ab6241ec72..5e42bf329bc0 100644 --- a/src/collections/resources/case-study/hpes-adoption-of-meshery-and-meshmap/index.mdx +++ b/src/collections/resources/case-study/hpes-adoption-of-meshery-and-kanvas/index.mdx @@ -1,7 +1,7 @@ --- -title: HPE's Adoption of Layer5 Meshery and MeshMap +title: HPE's Adoption of Layer5 Meshery and Kanvas subtitle: HPE uses Meshery to manage SPIRE instances -permalink: case-study/hpes-adoption-of-meshery-and-meshmap +permalink: case-study/hpes-adoption-of-meshery-and-kanvas date: 2023-06-17 08:00:00 -0530 author: Layer5 Team thumbnail: ./meshery-and-hpe.svg @@ -38,7 +38,7 @@ HPE's adoption of Meshery was driven by the need to simplify Kubernetes cluster
    -
    diff --git a/src/collections/resources/case-study/hpes-adoption-of-meshery-and-meshmap/layers.svg b/src/collections/resources/case-study/hpes-adoption-of-meshery-and-kanvas/layers.svg similarity index 100% rename from src/collections/resources/case-study/hpes-adoption-of-meshery-and-meshmap/layers.svg rename to src/collections/resources/case-study/hpes-adoption-of-meshery-and-kanvas/layers.svg diff --git a/src/collections/resources/case-study/hpes-adoption-of-meshery-and-meshmap/meshery-and-hpe.svg b/src/collections/resources/case-study/hpes-adoption-of-meshery-and-kanvas/meshery-and-hpe.svg similarity index 100% rename from src/collections/resources/case-study/hpes-adoption-of-meshery-and-meshmap/meshery-and-hpe.svg rename to src/collections/resources/case-study/hpes-adoption-of-meshery-and-kanvas/meshery-and-hpe.svg diff --git a/src/collections/resources/case-study/hpes-adoption-of-meshery-and-meshmap/meshery-integrations.svg b/src/collections/resources/case-study/hpes-adoption-of-meshery-and-kanvas/meshery-integrations.svg similarity index 100% rename from src/collections/resources/case-study/hpes-adoption-of-meshery-and-meshmap/meshery-integrations.svg rename to src/collections/resources/case-study/hpes-adoption-of-meshery-and-kanvas/meshery-integrations.svg diff --git a/src/collections/resources/case-study/hpes-adoption-of-meshery-and-meshmap/network.svg b/src/collections/resources/case-study/hpes-adoption-of-meshery-and-kanvas/network.svg similarity index 100% rename from src/collections/resources/case-study/hpes-adoption-of-meshery-and-meshmap/network.svg rename to src/collections/resources/case-study/hpes-adoption-of-meshery-and-kanvas/network.svg diff --git a/src/collections/resources/case-study/hpes-adoption-of-meshery-and-meshmap/users.svg b/src/collections/resources/case-study/hpes-adoption-of-meshery-and-kanvas/users.svg similarity index 100% rename from src/collections/resources/case-study/hpes-adoption-of-meshery-and-meshmap/users.svg rename to src/collections/resources/case-study/hpes-adoption-of-meshery-and-kanvas/users.svg diff --git a/src/collections/resources/case-study/hpes-adoption-of-meshery-and-meshmap/yogi.webp b/src/collections/resources/case-study/hpes-adoption-of-meshery-and-kanvas/yogi.webp similarity index 100% rename from src/collections/resources/case-study/hpes-adoption-of-meshery-and-meshmap/yogi.webp rename to src/collections/resources/case-study/hpes-adoption-of-meshery-and-kanvas/yogi.webp diff --git a/src/collections/use-cases/commenting/index.mdx b/src/collections/use-cases/commenting/index.mdx index 3b4a1b6388d5..3e747fec8f64 100644 --- a/src/collections/use-cases/commenting/index.mdx +++ b/src/collections/use-cases/commenting/index.mdx @@ -1,8 +1,8 @@ --- title: Brainstorm with commenting -abstract: "MeshMap's Designer Mode offers a powerful collaboration feature through comments." +abstract: "Kanvas's Designer Mode offers a powerful collaboration feature through comments." thumbnail: ../../../assets/images/comments/comment.svg -eurl: https://layer5.io/cloud-native-management/meshmap/collaborate/peer-reviews +eurl: https://layer5.io/cloud-native-management/kanvas/collaborate/peer-reviews category: usecase status: delivered --- \ No newline at end of file diff --git a/src/collections/use-cases/whiteboarding/index.mdx b/src/collections/use-cases/whiteboarding/index.mdx index 5fc7527fca5b..368da1b3347e 100644 --- a/src/collections/use-cases/whiteboarding/index.mdx +++ b/src/collections/use-cases/whiteboarding/index.mdx @@ -1,6 +1,6 @@ --- title: Whiteboarding -abstract: "The Whiteboardingg and Freestyle Drawing feature introduces versatile drawing capabilities within MeshMap" +abstract: "The Whiteboardingg and Freestyle Drawing feature introduces versatile drawing capabilities within Kanvas" thumbnail: ../../../assets/images/whiteboard/whiteboard.svg eurl: https://layer5.io/architecture-diagram/design-architecture-diagramm category: usecase diff --git a/src/components/Call-To-Actions/CTA_Bottom/cta_bottom_categories.js b/src/components/Call-To-Actions/CTA_Bottom/cta_bottom_categories.js index b2c4f31b7f10..a0edff246470 100644 --- a/src/components/Call-To-Actions/CTA_Bottom/cta_bottom_categories.js +++ b/src/components/Call-To-Actions/CTA_Bottom/cta_bottom_categories.js @@ -1,5 +1,5 @@ import img_source from "../../../assets/images/callout/callout.webp"; -import meshmap_icon from "../../../assets/images/meshmap/meshmap-collaborate.webp"; +import kanvas_icon from "../../../assets/images/kanvas/kanvas-collaborate.webp"; import docker from "../../../assets/images/docker-extension/docker-extension-meshery-logo.svg"; export const Categories = { @@ -12,13 +12,13 @@ export const Categories = { "Link": "https://slack.layer5.io", "Link_external": true }, - "MeshMap": { - "Image": meshmap_icon, - "Image_Alt": "MeshMap", - "Heading": "Get started with MeshMap!", + "Kanvas": { + "Image": kanvas_icon, + "Image_Alt": "Kanvas", + "Heading": "Get started with Kanvas!", "Content": "Explore and understand your infrastructure at a glance with our powerful visualizer tool. Gain insights, track dependencies, and optimize performance effortlessly.", - "Button_Text": "Try MeshMap now!", - "Link": "/cloud-native-management/meshmap", + "Button_Text": "Try Kanvas now!", + "Link": "/cloud-native-management/kanvas", "Link_external": false }, "Docker": { diff --git a/src/components/Case-study-banner/index.js b/src/components/Case-study-banner/index.js index 16645981289f..4d7f6dea6e89 100644 --- a/src/components/Case-study-banner/index.js +++ b/src/components/Case-study-banner/index.js @@ -2,7 +2,7 @@ import React, { useState } from "react"; import styled from "styled-components"; import MesheryLogo from "../../assets/images/meshery/icon-only/meshery-logo-light.svg"; import SpireLogo from "../../collections/integrations/spire/icons/color/spire-color.svg"; -import MesheryAndSpire from "../../collections/resources/case-study/hpes-adoption-of-meshery-and-meshmap/meshery-and-hpe.svg"; +import MesheryAndSpire from "../../collections/resources/case-study/hpes-adoption-of-meshery-and-kanvas/meshery-and-hpe.svg"; const BannerWrapper = styled.div` @@ -208,7 +208,7 @@ const CaseStudyBanner = () => { return ( <> - +
    diff --git a/src/pages/cloud-native-management/generate-aws-architecture-diagram.js b/src/pages/cloud-native-management/generate-aws-architecture-diagram.js index c7adb9fbdccb..acc5d8bcde0c 100644 --- a/src/pages/cloud-native-management/generate-aws-architecture-diagram.js +++ b/src/pages/cloud-native-management/generate-aws-architecture-diagram.js @@ -13,6 +13,6 @@ const Aws = () => { export default Aws; export const Head = () => { return ; }; \ No newline at end of file diff --git a/src/pages/cloud-native-management/generate-gcp-architecture-diagram.js b/src/pages/cloud-native-management/generate-gcp-architecture-diagram.js index 43707e7ab0b9..67b1dfbc656b 100644 --- a/src/pages/cloud-native-management/generate-gcp-architecture-diagram.js +++ b/src/pages/cloud-native-management/generate-gcp-architecture-diagram.js @@ -13,6 +13,6 @@ const Gcp = () => { export default Gcp; export const Head = () => { return ; }; \ No newline at end of file diff --git a/src/pages/cloud-native-management/generate-kubernetes-architecture-diagram.js b/src/pages/cloud-native-management/generate-kubernetes-architecture-diagram.js index 83f3fe5fc258..7826bdf3c692 100644 --- a/src/pages/cloud-native-management/generate-kubernetes-architecture-diagram.js +++ b/src/pages/cloud-native-management/generate-kubernetes-architecture-diagram.js @@ -13,6 +13,6 @@ const Kubernetes = () => { export default Kubernetes; export const Head = () => { return ; }; \ No newline at end of file diff --git a/src/pages/cloud-native-management/meshmap/collaborate/index.js b/src/pages/cloud-native-management/kanvas/collaborate/index.js similarity index 63% rename from src/pages/cloud-native-management/meshmap/collaborate/index.js rename to src/pages/cloud-native-management/kanvas/collaborate/index.js index 9b9956e02b29..3fbccacd9910 100644 --- a/src/pages/cloud-native-management/meshmap/collaborate/index.js +++ b/src/pages/cloud-native-management/kanvas/collaborate/index.js @@ -2,16 +2,16 @@ import React from "react"; import SEO from "../../../../components/seo"; -import MeshmapCollaborate from "../../../../sections/Meshmap/Meshmap-collaborate"; -const MeshmapCollaboratePage = () => { +import KanvasCollaborate from "../../../../sections/Kanvas/Kanvas-collaborate"; +const KanvasCollaboratePage = () => { return ( <> - + ); }; -export default MeshmapCollaboratePage; +export default KanvasCollaboratePage; export const Head = () => { return ; }; \ No newline at end of file diff --git a/src/pages/cloud-native-management/meshmap/collaborate/peer-reviews/index.js b/src/pages/cloud-native-management/kanvas/collaborate/peer-reviews/index.js similarity index 100% rename from src/pages/cloud-native-management/meshmap/collaborate/peer-reviews/index.js rename to src/pages/cloud-native-management/kanvas/collaborate/peer-reviews/index.js diff --git a/src/pages/cloud-native-management/kanvas/design.js b/src/pages/cloud-native-management/kanvas/design.js new file mode 100644 index 000000000000..1666b3da2d86 --- /dev/null +++ b/src/pages/cloud-native-management/kanvas/design.js @@ -0,0 +1,17 @@ +import React from "react"; + +import SEO from "../../../components/seo"; + +import KanvasDesign from "../../../sections/Kanvas/Kanvas-design/index"; +const KanvasDesignPage = () => { + return ( + <> + + + + ); +}; +export default KanvasDesignPage; +export const Head = () => { + return ; +}; \ No newline at end of file diff --git a/src/pages/cloud-native-management/kanvas/index.js b/src/pages/cloud-native-management/kanvas/index.js new file mode 100644 index 000000000000..a5f1a9619458 --- /dev/null +++ b/src/pages/cloud-native-management/kanvas/index.js @@ -0,0 +1,18 @@ +import React from "react"; + +import SEO from "../../../components/seo"; + +import Kanvas from "../../../sections/Kanvas/index"; +const KanvasPage = ({ location }) => { + const params = new URLSearchParams(location.search); + const parameter1 = params.get("teaser"); + return ( + <> + + + ); +}; +export default KanvasPage; +export const Head = () => { + return ; +}; diff --git a/src/pages/cloud-native-management/kanvas/visualize.js b/src/pages/cloud-native-management/kanvas/visualize.js new file mode 100644 index 000000000000..264d1d4e4057 --- /dev/null +++ b/src/pages/cloud-native-management/kanvas/visualize.js @@ -0,0 +1,21 @@ +import React from "react"; + +import SEO from "../../../components/seo"; + +import KanvasVisualize from "../../../sections/Kanvas/Kanvas-visualize/index"; + +const KanvasVisualizePage = () => { + + return ( + <> + + + + ); +}; +export default KanvasVisualizePage; + + +export const Head = () => { + return ; +}; \ No newline at end of file diff --git a/src/pages/cloud-native-management/meshery/operating-cloud-native-infra.js b/src/pages/cloud-native-management/meshery/operating-cloud-native-infra.js index f9e7ac706e8f..03bd606670f1 100644 --- a/src/pages/cloud-native-management/meshery/operating-cloud-native-infra.js +++ b/src/pages/cloud-native-management/meshery/operating-cloud-native-infra.js @@ -58,12 +58,12 @@ const OperatingServiceMeshes = () => { ), }, { - title: "MeshMap", + title: "Kanvas", icon: VisualTopology, description: (

    - MeshMap enables all cloud native management operations from + Kanvas enables all cloud native management operations from `mesheryctl` to Meshery's web-based user interface in visually interactive topology.

    @@ -73,8 +73,8 @@ const OperatingServiceMeshes = () => {

    Learn more about{" "} - - MeshMap + + Kanvas

    diff --git a/src/pages/cloud-native-management/meshmap/design.js b/src/pages/cloud-native-management/meshmap/design.js deleted file mode 100644 index f7293b861dbb..000000000000 --- a/src/pages/cloud-native-management/meshmap/design.js +++ /dev/null @@ -1,17 +0,0 @@ -import React from "react"; - -import SEO from "../../../components/seo"; - -import MeshmapDesign from "../../../sections/Meshmap/Meshmap-design/index"; -const MeshmapDesignPage = () => { - return ( - <> - - - - ); -}; -export default MeshmapDesignPage; -export const Head = () => { - return ; -}; \ No newline at end of file diff --git a/src/pages/cloud-native-management/meshmap/index.js b/src/pages/cloud-native-management/meshmap/index.js deleted file mode 100644 index ada0be4137ac..000000000000 --- a/src/pages/cloud-native-management/meshmap/index.js +++ /dev/null @@ -1,18 +0,0 @@ -import React from "react"; - -import SEO from "../../../components/seo"; - -import Meshmap from "../../../sections/Meshmap/index"; -const MeshmapPage = ({ location }) => { - const params = new URLSearchParams(location.search); - const parameter1 = params.get("teaser"); - return ( - <> - - - ); -}; -export default MeshmapPage; -export const Head = () => { - return ; -}; diff --git a/src/pages/cloud-native-management/meshmap/visualize.js b/src/pages/cloud-native-management/meshmap/visualize.js deleted file mode 100644 index d09a87a71989..000000000000 --- a/src/pages/cloud-native-management/meshmap/visualize.js +++ /dev/null @@ -1,21 +0,0 @@ -import React from "react"; - -import SEO from "../../../components/seo"; - -import MeshmapVisualize from "../../../sections/Meshmap/Meshmap-visualize/index"; - -const MeshmapVisualizePage = () => { - - return ( - <> - - - - ); -}; -export default MeshmapVisualizePage; - - -export const Head = () => { - return ; -}; \ No newline at end of file diff --git a/src/pages/community/members.js b/src/pages/community/members.js index cec11c4c8d38..edfdf5b3794b 100644 --- a/src/pages/community/members.js +++ b/src/pages/community/members.js @@ -26,7 +26,7 @@ import uiuxrIcon from "../../assets/images/uiuxr/uiuxr.svg"; import docsIcon from "../../assets/images/docs/docs.svg"; import dockerExtensionIcon from "../../assets/images/docker-extension/docker-extension-meshery-logo.svg"; import mesheryCatalogIcon from "../../assets/images/meshery/meshery-catalog.svg"; -import meshMapIcon from "../../assets/images/meshmap/icon-only/meshmap-icon.svg"; +import kanvasIcon from "../../assets/images/kanvas/icon-only/kanvas-icon.svg"; /** * Array containing a list of categories to be shown in the dropdown. * The map function in the end wraps the label property with a component. @@ -113,11 +113,11 @@ const options = [ className: "allOptions", }, { - label: "MeshMap", - value: "meshmap", + label: "Kanvas", + value: "kanvas", color: lighttheme.linkColor, isFixed: true, - icon: meshMapIcon, + icon: kanvasIcon, className: "allOptions", }, { diff --git a/src/pages/solutions/gitops/snapshot.js b/src/pages/solutions/gitops/snapshot.js index ad544b98b6df..37da8d92d5f5 100644 --- a/src/pages/solutions/gitops/snapshot.js +++ b/src/pages/solutions/gitops/snapshot.js @@ -7,6 +7,6 @@ export default SnapshotPage; export const Head = () => { return ; }; \ No newline at end of file diff --git a/src/sections/AWS-Diagram/diagram.js b/src/sections/AWS-Diagram/diagram.js index edd2462bafba..816bf9264dbc 100644 --- a/src/sections/AWS-Diagram/diagram.js +++ b/src/sections/AWS-Diagram/diagram.js @@ -160,7 +160,7 @@ const Aws = () => {

    Deploy with No Code AWS

    - Our visual AWS interface enables anyone to deploy production-grade software with no code. Whether you're new to AWS and are looking for the best way to learn or a seasoned pro, MeshMap has all the features you need to be successful in deploying and configuring your software, all with no code. + Our visual AWS interface enables anyone to deploy production-grade software with no code. Whether you're new to AWS and are looking for the best way to learn or a seasoned pro, Kanvas has all the features you need to be successful in deploying and configuring your software, all with no code.

    @@ -178,9 +178,9 @@ const Aws = () => {

    Visual drag & drop

    - MeshMap allow you to drag, drop and connect all your cloud components together simply and easily - no-code required! + Kanvas allow you to drag, drop and connect all your cloud components together simply and easily - no-code required!

    - Learn more → + Learn more → @@ -199,7 +199,7 @@ const Aws = () => {
    - Designing AWS Diagrams with MeshMap + Designing AWS Diagrams with Kanvas
    diff --git a/src/sections/AWS-Diagram/header.js b/src/sections/AWS-Diagram/header.js index e0a7bdf8f9db..386da8e6f387 100644 --- a/src/sections/AWS-Diagram/header.js +++ b/src/sections/AWS-Diagram/header.js @@ -123,9 +123,9 @@ const Header = () => {
    diff --git a/src/sections/Blog/Blog-single/author.js b/src/sections/Blog/Blog-single/author.js index e76bad04cfda..5450b2e6537f 100644 --- a/src/sections/Blog/Blog-single/author.js +++ b/src/sections/Blog/Blog-single/author.js @@ -30,7 +30,7 @@ const AboutTheAuthor = (props) => {

    Meshery

    Meshery is the world's only collaborative cloud manager.

    -

    Share

    diff --git a/src/sections/Blog/Blog-single/index.js b/src/sections/Blog/Blog-single/index.js index 387f75422f67..cfb3cd98741c 100644 --- a/src/sections/Blog/Blog-single/index.js +++ b/src/sections/Blog/Blog-single/index.js @@ -159,7 +159,7 @@ const BlogSingle = ({ data }) => {
    diff --git a/src/sections/Cloud-Native-Catalog/catalog.js b/src/sections/Cloud-Native-Catalog/catalog.js index d0a37bf0bef6..bfe03d02f5b0 100644 --- a/src/sections/Cloud-Native-Catalog/catalog.js +++ b/src/sections/Cloud-Native-Catalog/catalog.js @@ -2,9 +2,9 @@ import React from "react"; import styled from "styled-components"; import Wasm from "../../assets/images/webassembly/webssembly_icon.svg"; import Patterns from "../../assets/images/service-mesh-patterns/service-mesh-pattern.svg"; -// import Ebpf from "../../assets/images/meshmap/ebpf.svg"; -// import EbpfDark from "../../assets/images/meshmap/ebpf-dark.webp"; -import Opa from "../../assets/images/meshmap/opa.svg"; +// import Ebpf from "../../assets/images/kanvas/ebpf.svg"; +// import EbpfDark from "../../assets/images/kanvas/ebpf-dark.webp"; +import Opa from "../../assets/images/kanvas/opa.svg"; import CatalogsLight from "../../assets/images/catalog/catalog-light.svg"; import CatalogsDark from "../../assets/images/catalog/catalog-dark.svg"; import { Container, Row, Col } from "../../reusecore/Layout"; diff --git a/src/sections/Cloud-Native-Catalog/patterns.js b/src/sections/Cloud-Native-Catalog/patterns.js index 8046dc48ef9f..fb7562f4896d 100644 --- a/src/sections/Cloud-Native-Catalog/patterns.js +++ b/src/sections/Cloud-Native-Catalog/patterns.js @@ -1,20 +1,20 @@ import React from "react"; import styled from "styled-components"; -import Mutual_tls from "../../assets/images/meshmap/catalog-card-images/mutual-tls.svg"; -import Retries from "../../assets/images/meshmap/catalog-card-images/retries.svg"; -import Traces from "../../assets/images/meshmap/catalog-card-images/traces.svg"; -import Denial from "../../assets/images/meshmap/catalog-card-images/denial.svg"; -import Correlate_event from "../../assets/images/meshmap/catalog-card-images/correlate-event.svg"; -import Only_wagent from "../../assets/images/meshmap/catalog-card-images/only-wagent.svg"; -import Node_agent from "../../assets/images/meshmap/catalog-card-images/node-agent.svg"; -import Single_tenant from "../../assets/images/meshmap/catalog-card-images/single-tenant.svg"; -import Pre_provison from "../../assets/images/meshmap/catalog-card-images/pre-provision.svg"; -import Circuit_breaker from "../../assets/images/meshmap/catalog-card-images/circuit-breaker.svg"; -import Retry_deadline from "../../assets/images/meshmap/catalog-card-images/retry-deadline.svg"; -import Singleton from "../../assets/images/meshmap/catalog-card-images/singleton.svg"; -import Jwt_transformer from "../../assets/images/meshmap/catalog-card-images/jwt.svg"; -import Multicluster from "../../assets/images/meshmap/catalog-card-images/multicluster.svg"; -import Http_metrics from "../../assets/images/meshmap/catalog-card-images/http.svg"; +import Mutual_tls from "../../assets/images/kanvas/catalog-card-images/mutual-tls.svg"; +import Retries from "../../assets/images/kanvas/catalog-card-images/retries.svg"; +import Traces from "../../assets/images/kanvas/catalog-card-images/traces.svg"; +import Denial from "../../assets/images/kanvas/catalog-card-images/denial.svg"; +import Correlate_event from "../../assets/images/kanvas/catalog-card-images/correlate-event.svg"; +import Only_wagent from "../../assets/images/kanvas/catalog-card-images/only-wagent.svg"; +import Node_agent from "../../assets/images/kanvas/catalog-card-images/node-agent.svg"; +import Single_tenant from "../../assets/images/kanvas/catalog-card-images/single-tenant.svg"; +import Pre_provison from "../../assets/images/kanvas/catalog-card-images/pre-provision.svg"; +import Circuit_breaker from "../../assets/images/kanvas/catalog-card-images/circuit-breaker.svg"; +import Retry_deadline from "../../assets/images/kanvas/catalog-card-images/retry-deadline.svg"; +import Singleton from "../../assets/images/kanvas/catalog-card-images/singleton.svg"; +import Jwt_transformer from "../../assets/images/kanvas/catalog-card-images/jwt.svg"; +import Multicluster from "../../assets/images/kanvas/catalog-card-images/multicluster.svg"; +import Http_metrics from "../../assets/images/kanvas/catalog-card-images/http.svg"; import { Container } from "../../reusecore/Layout"; const CatalogWrapper = styled.div` diff --git a/src/sections/CloudNativeDeployments/features.js b/src/sections/CloudNativeDeployments/features.js index 9d3077e358ab..3535fd473797 100644 --- a/src/sections/CloudNativeDeployments/features.js +++ b/src/sections/CloudNativeDeployments/features.js @@ -157,22 +157,22 @@ const Feature = () => { -

    MeshMap Designer

    +

    Kanvas Designer

    Drag-and-drop your cloud native infrastructure using a palette of thousands of versioned Kubernetes components.

    - Learn more → + Learn more →

    - MeshMap Visualizer + Kanvas Visualizer

    Deploy designs, apply patterns, manage and operate your deployments in real-time. Bring all your Kubernetes clusters under a common point of management.

    - Learn more → + Learn more →
    diff --git a/src/sections/Comments/index.js b/src/sections/Comments/index.js index ebba44dd78fe..457207184e77 100644 --- a/src/sections/Comments/index.js +++ b/src/sections/Comments/index.js @@ -19,7 +19,7 @@ let data = { let card_data = [ { heading: "Dynamic collaboration", - subtitle: "Bring your ideas to life by adding visual annotations and comments directly onto your MeshMap canvas.", + subtitle: "Bring your ideas to life by adding visual annotations and comments directly onto your Kanvas canvas.", image: use_case_1 }, { diff --git a/src/sections/Community/Calendar/meetLinksData.js b/src/sections/Community/Calendar/meetLinksData.js index 4f141d7c7bad..097481bb4f49 100644 --- a/src/sections/Community/Calendar/meetLinksData.js +++ b/src/sections/Community/Calendar/meetLinksData.js @@ -19,7 +19,7 @@ export const meet_links_data = [ }, { day: "Tuesdays", - meeting: "Meshery MeshSync/MeshMap Meeting", + meeting: "Meshery MeshSync/Kanvas Meeting", slack_channel: "#meshery-ci", slack_link: "https://layer5io.slack.com/archives/C010LFFGFFA", meeting_minutes: "https://bit.ly/3aXOaAs", diff --git a/src/sections/Community/Event-single/index.js b/src/sections/Community/Event-single/index.js index 9c0e61591268..b7e0eb496fb0 100644 --- a/src/sections/Community/Event-single/index.js +++ b/src/sections/Community/Event-single/index.js @@ -95,7 +95,7 @@ const EventSingle = ({ data }) => {
    {/* { Review Rockstar - awarded to individuals who provide thorough and valuable code reviews.
  • - - MeshMap Snapshot - awarded to users upon creation of their first infrastructure screenshot directly in their pull request. + + Kanvas Snapshot - awarded to users upon creation of their first infrastructure screenshot directly in their pull request.
  • @@ -175,8 +175,8 @@ const RecognitionPage = () => { Image Hub - awarded to the community members who make consistent and impactful contributions to the Image Hub project in recognition and appreciation of their efforts.
  • - - MeshMap - awarded to the community members who make consistent and impactful contributions to the MeshMap project in recognition and appreciation of their efforts. Community members who earn this badge occasionally become a project maintainer. + + Kanvas - awarded to the community members who make consistent and impactful contributions to the Kanvas project in recognition and appreciation of their efforts. Community members who earn this badge occasionally become a project maintainer.
  • diff --git a/src/sections/Community/Handbook/repo-data.js b/src/sections/Community/Handbook/repo-data.js index 65dd16a62234..76606f3403c6 100644 --- a/src/sections/Community/Handbook/repo-data.js +++ b/src/sections/Community/Handbook/repo-data.js @@ -83,9 +83,9 @@ export const repo_data = [ repository: "https://github.com/layer5io/getnighthawk", }, { - project: "MeshMap", + project: "Kanvas", image: meshery, - site: "/cloud-native-management/meshmap", + site: "/cloud-native-management/kanvas", language: "React.js, Cytoscape.js", maintainers_name: ["Aabid Sofi"], link: ["https://layer5.io/community/members/aabid-sofi"], diff --git a/src/sections/Community/Handbook/repository.js b/src/sections/Community/Handbook/repository.js index 88be857bbb42..460117f1d0b5 100644 --- a/src/sections/Community/Handbook/repository.js +++ b/src/sections/Community/Handbook/repository.js @@ -12,7 +12,7 @@ import meshery from "../../../assets/images/meshery/icon-only/meshery-logo-light import servicemeshpattern from "../../../assets/images/service-mesh-patterns/service-mesh-pattern.svg"; import TocPagination from "../../../components/handbook-navigation/TocPagination"; import IntraPage from "../../../components/handbook-navigation/intra-page"; -import MeshMap from "../../../assets/images/meshmap/icon-only/meshmap-icon.svg"; +import Kanvas from "../../../assets/images/kanvas/icon-only/kanvas-icon.svg"; import { Link } from "gatsby"; @@ -116,10 +116,10 @@ const Repository = () => { - emerging projects and Meshery extensions, like MeshMap logo MeshMap. + /> Kanvas.
  • diff --git a/src/sections/Community/Handbook/security-vulnerabilities.js b/src/sections/Community/Handbook/security-vulnerabilities.js index 012dcda3f24a..451d507b0dc2 100644 --- a/src/sections/Community/Handbook/security-vulnerabilities.js +++ b/src/sections/Community/Handbook/security-vulnerabilities.js @@ -10,7 +10,7 @@ import MeshSync from "../../../assets/images/meshsync/meshsync.svg"; import servicemeshperformance from "../../../assets/images/service-mesh-performance/icon/smp-dark.svg"; import meshery from "../../../assets/images/meshery/icon-only/meshery-logo-light.svg"; import servicemeshpattern from "../../../assets/images/service-mesh-patterns/service-mesh-pattern.svg"; -import MeshMap from "../../../assets/images/meshmap/icon-only/meshmap-icon.svg"; +import Kanvas from "../../../assets/images/kanvas/icon-only/kanvas-icon.svg"; const SecurityVulnerabilitiesPage = () => { return ( @@ -88,10 +88,10 @@ const SecurityVulnerabilitiesPage = () => {   Layer5 Labs - emerging projects and Meshery extensions, like MeshMap logoMeshMap. + />Kanvas.

    You can find the list of all the Layer5 project repositories here

    diff --git a/src/sections/Community/Handbook/writing-program.js b/src/sections/Community/Handbook/writing-program.js index 67881f8e10f5..f98d1c450f0a 100644 --- a/src/sections/Community/Handbook/writing-program.js +++ b/src/sections/Community/Handbook/writing-program.js @@ -365,7 +365,7 @@ const Writers = () => {
  • Creating and Deploying your first application with - MeshMap. + Kanvas.

  • diff --git a/src/sections/Community/Member-single/index.js b/src/sections/Community/Member-single/index.js index a9a9554c08fd..633683010df4 100644 --- a/src/sections/Community/Member-single/index.js +++ b/src/sections/Community/Member-single/index.js @@ -22,7 +22,7 @@ import writerIcon from "../../../assets/images/writer-program/writer-program-bad import docsLogo from "../../../assets/images/docs/docs.svg"; import mesheryCatalogLogo from "../../../assets/images/meshery/meshery-catalog.svg"; import dockerExtensionLogo from "../../../assets/images/docker-extension/docker-extension-meshery-logo.svg"; -import meshMapLogo from "../../../assets/images/meshmap/icon-only/meshmap-icon.svg"; +import KanvasLogo from "../../../assets/images/kanvas/icon-only/kanvas-icon.svg"; import Button from "../../../reusecore/Button"; import { ReactComponent as TwitterIcon } from "../../../assets/images/socialIcons/twitter.svg"; @@ -192,18 +192,18 @@ const MemberSingle = ({ frontmatter }) => { )} - {badges.includes("meshmap") && ( + {badges.includes("kanvas") && (
  • - + MeshMap Logo
  • - Meshmap + Kanvas )} {badges.includes("docker-extension") && ( diff --git a/src/sections/Company/Brand/Brand-components/catalog.js b/src/sections/Company/Brand/Brand-components/catalog.js index f6811ed2fa4c..e21b35abf21b 100644 --- a/src/sections/Company/Brand/Brand-components/catalog.js +++ b/src/sections/Company/Brand/Brand-components/catalog.js @@ -60,7 +60,7 @@ const Catalog = () => { diff --git a/src/sections/Company/Brand/Brand-components/meshmap.js b/src/sections/Company/Brand/Brand-components/kanvas.js similarity index 72% rename from src/sections/Company/Brand/Brand-components/meshmap.js rename to src/sections/Company/Brand/Brand-components/kanvas.js index 53632bfb0c03..dffa790653d5 100644 --- a/src/sections/Company/Brand/Brand-components/meshmap.js +++ b/src/sections/Company/Brand/Brand-components/kanvas.js @@ -5,28 +5,28 @@ import { Row, Col } from "../../../../reusecore/Layout"; import Button from "../../../../reusecore/Button"; import ColorBox from "../../../../components/ColorBox"; import { FiDownloadCloud } from "@react-icons/all-files/fi/FiDownloadCloud"; -import MeshMapIcon from "../../../../assets/images/meshmap/meshmap-color-icon.svg"; -import MeshMap from "../../../../assets/images/meshmap/meshmap-color-horizontal.svg"; -import MeshMapTitle from "../../../../assets/images/meshmap/meshmap-color-text.webp"; +import KanvasIcon from "../../../../assets/images/kanvas/kanvas-color-icon.svg"; +import Kanvas from "../../../../assets/images/kanvas/kanvas-color-horizontal.svg"; +import KanvasTitle from "../../../../assets/images/kanvas/kanvas-color-text.webp"; -const MeshMapWrapper = styled.section` +const KanvasWrapper = styled.section` .sub-project { margin-top: -2rem; } `; -const MeshMapBrand = () => { +const KanvasBrand = () => { return ( - +

    - MeshMap + Kanvas

    - + @@ -34,7 +34,7 @@ const MeshMapBrand = () => {

    - The MeshMap mark includes the MeshMap name & logo, and any word, + The Kanvas mark includes the Kanvas name & logo, and any word, phrase, image, or other designation that identifies the source or origin of any Layer5 projects. Please don’t modify the marks or use them in a confusing way, including suggesting sponsorship or @@ -52,13 +52,13 @@ const MeshMapBrand = () => { - MeshMap Logo + Kanvas Logo - MeshMapLight Icon + KanvasLight Icon - MeshMapTitle Text + KanvasTitle Text @@ -71,8 +71,8 @@ const MeshMapBrand = () => {

    - The MeshMap color palette consists of the primary MeshMap color - and additional shades. The MeshMap logo should be white or + The Kanvas color palette consists of the primary Kanvas color + and additional shades. The Kanvas logo should be white or monochrome tonal when using a color background.

    @@ -83,8 +83,8 @@ const MeshMapBrand = () => {
    -
    + ); }; -export default MeshMapBrand; +export default KanvasBrand; diff --git a/src/sections/Company/Brand/index.js b/src/sections/Company/Brand/index.js index b260b42a0736..a6572dcd6ed5 100644 --- a/src/sections/Company/Brand/index.js +++ b/src/sections/Company/Brand/index.js @@ -16,7 +16,7 @@ const NightHawk = loadable(() => import("./Brand-components/nighthawk")); const ServiceMeshPatterns = loadable(() => import("./Brand-components/servicemeshpatterns")); const MeshMasterBrand = loadable(() => import("./Brand-components/meshmaster")); const MeshMarkBrand = loadable(() => import("./Brand-components/meshmark")); -const MeshMapBrand = loadable(() => import("./Brand-components/meshmap")); +const KanvasBrand = loadable(() => import("./Brand-components/kanvas")); const BrandGuide = loadable(() => import("./Brand-components/brand-guide")); const StickFigures = loadable(() => import("./Brand-components/stickfigures")); const Catalog = loadable(() => import("./Brand-components/catalog")); @@ -104,7 +104,7 @@ const Brand = () => { const nightHawkRef = useRef(null); const meshmateRef = useRef(null); const meshmarkRef = useRef(null); - const meshmapRef = useRef(null); + const kanvasRef = useRef(null); const stickfiguresRef = useRef(null); const CatalogRef = useRef(null); const SocialBackgroundsRef = useRef(null); @@ -121,7 +121,7 @@ const Brand = () => { { section: "NightHawk", ref: nightHawkRef }, { section: "MeshMate", ref: meshmateRef }, { section: "MeshMaster", ref: meshMasterRef }, - { section: "MeshMap", ref: meshmapRef }, + { section: "Kanvas", ref: kanvasRef }, { section: "Five", ref: stickfiguresRef }, { section: "Catalog", ref: CatalogRef }, { section: "SocialBackgrounds", ref: SocialBackgroundsRef } @@ -212,8 +212,8 @@ const Brand = () => {
    -
    - +
    +
    @@ -346,13 +346,13 @@ const Brand = () => {

    { - scrollTo(meshmapRef.current); + scrollTo(kanvasRef.current); }} > - MeshMap + Kanvas

    {

    press@layer5.io

    - +

    - MeshMap + Kanvas

    @@ -123,7 +123,7 @@ const NewsSidebar = (props) => {

    diff --git a/src/sections/Developer-Infrastructure/index.js b/src/sections/Developer-Infrastructure/index.js index f59d8a5af6d9..0347247e4fb9 100644 --- a/src/sections/Developer-Infrastructure/index.js +++ b/src/sections/Developer-Infrastructure/index.js @@ -34,7 +34,7 @@ const KubernetesMultiCluster = () => { { heading: "Inclusive collaboration from start to finish", subtitle: - "MeshMap is an end-to-end management platform, here to help teams understand problems, explore options, and build solutions—together.", + "Kanvas is an end-to-end management platform, here to help teams understand problems, explore options, and build solutions—together.", image: collaborate_svg, }, ]; diff --git a/src/sections/Docker-Meshery/docker-extension-meshery.js b/src/sections/Docker-Meshery/docker-extension-meshery.js index 237e6ab90045..34c38848a55e 100644 --- a/src/sections/Docker-Meshery/docker-extension-meshery.js +++ b/src/sections/Docker-Meshery/docker-extension-meshery.js @@ -27,7 +27,7 @@ const DockerExtensionMeshery = () => { Wrangle cloud native apps using Docker Desktop and Meshery

    - From the convenience of your Docker Desktop interface, connect Meshery with your Kubernetes cluster. Watch as MeshSync discovers all of your Kuberentes clusters. Visually design your Docker-based infrastructure. Choose from hundreds of ready-made design patterns using Meshery Catalog. Use our no-code designer, MeshMap, to collaboratively design and operate your infra. + From the convenience of your Docker Desktop interface, connect Meshery with your Kubernetes cluster. Watch as MeshSync discovers all of your Kuberentes clusters. Visually design your Docker-based infrastructure. Choose from hundreds of ready-made design patterns using Meshery Catalog. Use our no-code designer, Kanvas, to collaboratively design and operate your infra.

    @@ -58,7 +58,7 @@ const DockerExtensionMeshery = () => {
    Visual designer for cloud native applications and infrastructure
    {" "} - Using MeshMap as a visual topology for designing Docker Compose applications, operating Kubernetes, service meshes, and their workloads. + Using Kanvas as a visual topology for designing Docker Compose applications, operating Kubernetes, service meshes, and their workloads. diff --git a/src/sections/Docker-Meshery/index.js b/src/sections/Docker-Meshery/index.js index b4e1a2b3bedd..8e999159f26b 100644 --- a/src/sections/Docker-Meshery/index.js +++ b/src/sections/Docker-Meshery/index.js @@ -4,7 +4,7 @@ import { Row, Col } from "../../reusecore/Layout"; import docker from "../../assets/images/socialIcons/docker_white.svg"; import meshery from "../../assets/images/meshery/icon-only/meshery-logo-white.svg"; import DockerExtensionMeshery from "./docker-extension-meshery"; -import MeshMapCTA from "../meshmap-cta"; +import KanvasCTA from "../kanvas-cta"; const MesheryDockerPage = () => { return ( @@ -23,7 +23,7 @@ const MesheryDockerPage = () => {
    - + ); }; diff --git a/src/sections/GCP-Diagram/diagram.js b/src/sections/GCP-Diagram/diagram.js index 1917a534900a..e84703e10a10 100644 --- a/src/sections/GCP-Diagram/diagram.js +++ b/src/sections/GCP-Diagram/diagram.js @@ -151,7 +151,7 @@ const Gcp = () => {

    Deploy with No Code GCP

    - Our visual GCP interface enables anyone to deploy production-grade software with no code. Whether you're new to GCP and are looking for the best way to learn or a seasoned pro, MeshMap has all the features you need to be successful in deploying and configuring your software, all with no code. + Our visual GCP interface enables anyone to deploy production-grade software with no code. Whether you're new to GCP and are looking for the best way to learn or a seasoned pro, Kanvas has all the features you need to be successful in deploying and configuring your software, all with no code.

    @@ -169,9 +169,9 @@ const Gcp = () => {

    Visual drag & drop

    - MeshMap allow you to drag, drop and connect all your cloud components together simply and easily - no-code required! + Kanvas allow you to drag, drop and connect all your cloud components together simply and easily - no-code required!

    - Learn more → + Learn more → @@ -190,7 +190,7 @@ const Gcp = () => {
    - Designing GCP Diagrams with MeshMap + Designing GCP Diagrams with Kanvas
    @@ -219,7 +219,7 @@ const Gcp = () => { Leverage Google Cloud Platform diagrams to utilize various services in facilitating storage and analysis of large datasets. These services encompass BigQuery, Dataflow, Dataproc, and Data Fusion, contributing to cloud-based data management.

    - Learn more → + Learn more →

    @@ -240,7 +240,7 @@ const Gcp = () => {
    - Designing GCP Diagrams with MeshMap + Designing GCP Diagrams with KanvasclassName=
    */} diff --git a/src/sections/GCP-Diagram/header.js b/src/sections/GCP-Diagram/header.js index e8b9367ab087..ac9272fb6b59 100644 --- a/src/sections/GCP-Diagram/header.js +++ b/src/sections/GCP-Diagram/header.js @@ -86,9 +86,9 @@ const Header = () => {
    diff --git a/src/sections/General/Footer/index.js b/src/sections/General/Footer/index.js index fd2d9e2f0901..557a244735b6 100644 --- a/src/sections/General/Footer/index.js +++ b/src/sections/General/Footer/index.js @@ -21,7 +21,7 @@ const Footer = ({ location }) => { "/blog", "/careers", "/meshery", - "/meshmap", + "/kanvas", "/community", "/handbook", "projects", @@ -215,9 +215,9 @@ const Footer = ({ location }) => {
  • - MeshMap + Kanvas NEW
  • diff --git a/src/sections/General/Navigation/index.js b/src/sections/General/Navigation/index.js index 5e5017338c99..8da456f82949 100644 --- a/src/sections/General/Navigation/index.js +++ b/src/sections/General/Navigation/index.js @@ -9,7 +9,7 @@ import { useStyledDarkMode } from "../../../theme/app/useStyledDarkMode"; import axios from "axios"; // import smp_dark_text from "../../../assets/images/service-mesh-performance/stacked/smp-dark-text.svg"; // import smp_light_text from "../../../assets/images/service-mesh-performance/stacked/smp-light-text.svg"; -import meshmap_dark from "../../..//assets/images/meshmap/icon-only/meshmap-icon.svg"; +import kanvas_dark from "../../..//assets/images/kanvas/icon-only/kanvas-icon.svg"; import meshery from "../../../assets/images/meshery/icon-only/meshery-logo-light.svg"; import Data from "./utility/menu-items.js"; import ScrollspyMenu from "./utility/ScrollspyMenu.js"; @@ -19,7 +19,7 @@ import DefaultAvatar from "./utility/DefaultAvatar.js"; import CloudIcon from "./utility/CloudIcon.js"; import LogoutIcon from "./utility/LogoutIcon.js"; // import LogoutIcon from "./utility/LogoutIcon.js"; -import MeshMapIcon from "./utility/MeshMapIcon.js"; +import KanvasIcon from "./utility/KanvasIcon.js"; const Navigation = () => { let data = useStaticQuery( graphql` @@ -158,12 +158,12 @@ const Navigation = () => { { frontmatter: { thumbnail: { - img: meshmap_dark, + img: kanvas_dark, }, - title: "MeshMap, collaborative infrastructure management", + title: "Kanvas, collaborative infrastructure management", }, fields: { - slug: "/cloud-native-management/meshmap", + slug: "/cloud-native-management/kanvas", }, }, ], @@ -414,7 +414,7 @@ const Navigation = () => { target="_blank" >
    - +
    Playground diff --git a/src/sections/General/Navigation/utility/MeshMapIcon.js b/src/sections/General/Navigation/utility/KanvasIcon.js similarity index 98% rename from src/sections/General/Navigation/utility/MeshMapIcon.js rename to src/sections/General/Navigation/utility/KanvasIcon.js index 44d02d542347..0ef5893cdc8b 100644 --- a/src/sections/General/Navigation/utility/MeshMapIcon.js +++ b/src/sections/General/Navigation/utility/KanvasIcon.js @@ -1,6 +1,6 @@ import React from "react"; -function MeshMapIcon() { +function KanvasIcon() { return ( {
    ) : ( <> - +
    @@ -121,7 +121,7 @@ const ScrollspyMenu = ({ menuItems, ...props }) => {
    -

    MeshMap

    +

    Kanvas

    Stop finger-pointing.
    Start collaborating.
    diff --git a/src/sections/General/Navigation/utility/menu-items.js b/src/sections/General/Navigation/utility/menu-items.js index edc2a3cad4d3..9e3a15cc7447 100644 --- a/src/sections/General/Navigation/utility/menu-items.js +++ b/src/sections/General/Navigation/utility/menu-items.js @@ -5,7 +5,7 @@ const Data = { menuItems: [ { name: "Solutions", - path: "/cloud-native-management/meshmap", + path: "/cloud-native-management/kanvas", subItems: [ { name: "Developer-defined Infrastructure", @@ -24,7 +24,7 @@ const Data = { }, { name: "Collaborative GitOps", - path: "/cloud-native-management/meshmap/collaborate", + path: "/cloud-native-management/kanvas/collaborate", sepLine: true }, { @@ -89,12 +89,12 @@ const Data = { sepLine: true }, { - name: "MeshMap", - path: "/cloud-native-management/meshmap", + name: "Kanvas", + path: "/cloud-native-management/kanvas", }, // { // name: "---", - // // path: "/cloud-native-management/meshmap", + // // path: "/cloud-native-management/kanvas", // }, { diff --git a/src/sections/Home/Banner-4/banner4.style.js b/src/sections/Home/Banner-4/banner4.style.js index ae734f06f3e5..38f31f0fc654 100644 --- a/src/sections/Home/Banner-4/banner4.style.js +++ b/src/sections/Home/Banner-4/banner4.style.js @@ -67,7 +67,7 @@ const Banner1SectionWrapper = styled.section` } } } - .meshmapVideo { + .kanvasVideo { position: relative; min-width:25%; max-width:100%; @@ -211,7 +211,7 @@ const Banner1SectionWrapper = styled.section` content: none; } } - .meshmapVideo { + .kanvasVideo { top: 1rem; } } diff --git a/src/sections/Home/Banner-4/index.js b/src/sections/Home/Banner-4/index.js index 0c08e50e85b8..1b72e628416b 100644 --- a/src/sections/Home/Banner-4/index.js +++ b/src/sections/Home/Banner-4/index.js @@ -7,7 +7,7 @@ import Button from "../../../reusecore/Button"; import VintageBox from "../../../reusecore/VintageBox"; import BGImg from "../../../components/BGImage"; import ReactPlayer from "react-player/youtube"; -// import mesheryPlayground from "./meshery-playground-meshmap.png"; +// import mesheryPlayground from "./meshery-playground-kanvas.png"; import videoThumbnail from "./meshery-infrastructure-as-diagram.webp"; import { FaMapMarkedAlt } from "@react-icons/all-files/fa/FaMapMarkedAlt"; @@ -16,7 +16,7 @@ import playIcon from "../../../assets/images/homePage-images/play-button.webp"; import Banner1SectionWrapper from "./banner4.style"; -// import meshmapVideo from "../../../assets/video/meshery/meshmap/meshmap-short-consul.mp4"; +// import kanvasVideo from "../../../assets/video/meshery/kanvas/kanvas-short-consul.mp4"; import { graphql, useStaticQuery } from "gatsby"; import { getImage } from "gatsby-plugin-image"; import useHasMounted from "../../../utils/useHasMounted"; @@ -68,7 +68,7 @@ const Banner1 = (props) => { -
    - +
    diff --git a/src/sections/Home/Playground-home/index.js b/src/sections/Home/Playground-home/index.js index bd2df1029335..f25686df3a52 100644 --- a/src/sections/Home/Playground-home/index.js +++ b/src/sections/Home/Playground-home/index.js @@ -204,7 +204,7 @@ const ViewsSectionWrapper = styled.div` `; -const MeshmapVisualizerViews = () => { +const KanvasVisualizerViews = () => { const [imageRef, inView] = useInView({ threshold: 0.3 }); const [imageInView, setimageInView] = useState(false); @@ -290,4 +290,4 @@ const MeshmapVisualizerViews = () => { ); }; -export default MeshmapVisualizerViews; +export default KanvasVisualizerViews; diff --git a/src/sections/Home/Projects-home/index.js b/src/sections/Home/Projects-home/index.js index 8b205218065f..623ed594cc54 100644 --- a/src/sections/Home/Projects-home/index.js +++ b/src/sections/Home/Projects-home/index.js @@ -14,7 +14,7 @@ const Projects = () => { const projectImage2_dark = "../../../assets/images/app/projects/smp.webp"; const projectImage3 = "../../../assets/images/app/projects/meshery-logo-light.webp"; const projectImage4 = "../../../assets/images/app/projects/nighthawk-logo.webp"; - const meshmapLogo = "../../../assets/images/meshmap/icon-only/meshmap-icon.svg"; + const kanvasLogo = "../../../assets/images/kanvas/icon-only/kanvas-icon.svg"; if (!didLoad){ return null; } @@ -38,10 +38,10 @@ const Projects = () => {
    - +
    - -

    MeshMap

    + +

    Kanvas

    Collaborative GitOps

    {/*

    Multiplayer Kubernetes by Design

    */}
    diff --git a/src/sections/Home/service-mesh-management/ServiceMesh.style.js b/src/sections/Home/service-mesh-management/ServiceMesh.style.js index d18d7e7c3f15..b13aa51e3518 100644 --- a/src/sections/Home/service-mesh-management/ServiceMesh.style.js +++ b/src/sections/Home/service-mesh-management/ServiceMesh.style.js @@ -152,7 +152,7 @@ const MeshSectionWrapper = styled.section` * MIT license (https://opensource.org/licenses/MIT) * W. https://svgartista.net **************************************************/ -.meshmap { +.kanvas { svg .svg-elem-1{stroke-dashoffset:168.8795166015625px;stroke-dasharray:168.8795166015625px;fill:transparent;-webkit-transition:stroke-dashoffset 0.9s cubic-bezier(0.6,-0.28,0.735,0.045) 2.5s,fill 0.7s cubic-bezier(0.6,0.04,0.98,0.335) 0s;transition:stroke-dashoffset 0.9s cubic-bezier(0.6,-0.28,0.735,0.045) 2.5s,fill 0.7s cubic-bezier(0.6,0.04,0.98,0.335) 0s}svg.active .svg-elem-1{stroke-dashoffset:0;fill:rgb(0,0,0)}svg .svg-elem-2{stroke-dashoffset:168.8795166015625px;stroke-dasharray:168.8795166015625px;-webkit-transition:stroke-dashoffset 0.9s cubic-bezier(0.6,-0.28,0.735,0.045) 2.6s,fill 0.7s cubic-bezier(0.6,0.04,0.98,0.335) 0.09s;transition:stroke-dashoffset 0.9s cubic-bezier(0.6,-0.28,0.735,0.045) 2.6s,fill 0.7s cubic-bezier(0.6,0.04,0.98,0.335) 0.09s}svg.active .svg-elem-2{stroke-dashoffset:0}svg .svg-elem-3{stroke-dashoffset:173.59739685058594px;stroke-dasharray:173.59739685058594px;fill:transparent;-webkit-transition:stroke-dashoffset 0.9s cubic-bezier(0.6,-0.28,0.735,0.045) 2.7s,fill 0.7s cubic-bezier(0.6,0.04,0.98,0.335) 0.18s;transition:stroke-dashoffset 0.9s cubic-bezier(0.6,-0.28,0.735,0.045) 2.7s,fill 0.7s cubic-bezier(0.6,0.04,0.98,0.335) 0.18s}svg.active .svg-elem-3{stroke-dashoffset:0;fill:rgb(0,179,159)}svg .svg-elem-4{stroke-dashoffset:173.56723022460938px;stroke-dasharray:173.56723022460938px;fill:transparent;-webkit-transition:stroke-dashoffset 0.9s cubic-bezier(0.6,-0.28,0.735,0.045) 2.8s,fill 0.7s cubic-bezier(0.6,0.04,0.98,0.335) 0.27s;transition:stroke-dashoffset 0.9s cubic-bezier(0.6,-0.28,0.735,0.045) 2.8s,fill 0.7s cubic-bezier(0.6,0.04,0.98,0.335) 0.27s}svg.active .svg-elem-4{stroke-dashoffset:0;fill:rgb(0,179,159)}svg .svg-elem-5{stroke-dashoffset:83.45301055908203px;stroke-dasharray:83.45301055908203px;fill:transparent;-webkit-transition:stroke-dashoffset 0.9s cubic-bezier(0.6,-0.28,0.735,0.045) 2.9s,fill 0.7s cubic-bezier(0.6,0.04,0.98,0.335) 0.36s;transition:stroke-dashoffset 0.9s cubic-bezier(0.6,-0.28,0.735,0.045) 2.9s,fill 0.7s cubic-bezier(0.6,0.04,0.98,0.335) 0.36s}svg.active .svg-elem-5{stroke-dashoffset:0;fill:rgb(0,0,0)}svg .svg-elem-6{stroke-dashoffset:83.45301055908203px;stroke-dasharray:83.45301055908203px;-webkit-transition:stroke-dashoffset 0.9s cubic-bezier(0.6,-0.28,0.735,0.045) 3s,fill 0.7s cubic-bezier(0.6,0.04,0.98,0.335) 0.44999999999999996s;transition:stroke-dashoffset 0.9s cubic-bezier(0.6,-0.28,0.735,0.045) 3s,fill 0.7s cubic-bezier(0.6,0.04,0.98,0.335) 0.44999999999999996s}svg.active .svg-elem-6{stroke-dashoffset:0}svg .svg-elem-7{stroke-dashoffset:173.4873046875px;stroke-dasharray:173.4873046875px;fill:transparent;-webkit-transition:stroke-dashoffset 0.9s cubic-bezier(0.6,-0.28,0.735,0.045) 3.1s,fill 0.7s cubic-bezier(0.6,0.04,0.98,0.335) 0.54s;transition:stroke-dashoffset 0.9s cubic-bezier(0.6,-0.28,0.735,0.045) 3.1s,fill 0.7s cubic-bezier(0.6,0.04,0.98,0.335) 0.54s}svg.active .svg-elem-7{stroke-dashoffset:0;fill:rgb(0,179,159)}svg .svg-elem-8{stroke-dashoffset:173.54556274414062px;stroke-dasharray:173.54556274414062px;fill:transparent;-webkit-transition:stroke-dashoffset 0.9s cubic-bezier(0.6,-0.28,0.735,0.045) 3.2s,fill 0.7s cubic-bezier(0.6,0.04,0.98,0.335) 0.63s;transition:stroke-dashoffset 0.9s cubic-bezier(0.6,-0.28,0.735,0.045) 3.2s,fill 0.7s cubic-bezier(0.6,0.04,0.98,0.335) 0.63s}svg.active .svg-elem-8{stroke-dashoffset:0;fill:rgb(0,179,159)}svg .svg-elem-9{stroke-dashoffset:173.59738159179688px;stroke-dasharray:173.59738159179688px;fill:transparent;-webkit-transition:stroke-dashoffset 0.9s cubic-bezier(0.6,-0.28,0.735,0.045) 3.3s,fill 0.7s cubic-bezier(0.6,0.04,0.98,0.335) 0.72s;transition:stroke-dashoffset 0.9s cubic-bezier(0.6,-0.28,0.735,0.045) 3.3s,fill 0.7s cubic-bezier(0.6,0.04,0.98,0.335) 0.72s}svg.active .svg-elem-9{stroke-dashoffset:0;fill:rgb(0,179,159)}svg .svg-elem-10{stroke-dashoffset:100.71990203857422px;stroke-dasharray:100.71990203857422px;fill:transparent;-webkit-transition:stroke-dashoffset 0.9s cubic-bezier(0.6,-0.28,0.735,0.045) 3.4s,fill 0.7s cubic-bezier(0.6,0.04,0.98,0.335) 0.8099999999999999s;transition:stroke-dashoffset 0.9s cubic-bezier(0.6,-0.28,0.735,0.045) 3.4s,fill 0.7s cubic-bezier(0.6,0.04,0.98,0.335) 0.8099999999999999s}svg.active .svg-elem-10{stroke-dashoffset:0;fill:rgb(0,0,0)}svg .svg-elem-11{stroke-dashoffset:100.71990203857422px;stroke-dasharray:100.71990203857422px;-webkit-transition:stroke-dashoffset 0.9s cubic-bezier(0.6,-0.28,0.735,0.045) 3.5s,fill 0.7s cubic-bezier(0.6,0.04,0.98,0.335) 0.8999999999999999s;transition:stroke-dashoffset 0.9s cubic-bezier(0.6,-0.28,0.735,0.045) 3.5s,fill 0.7s cubic-bezier(0.6,0.04,0.98,0.335) 0.8999999999999999s}svg.active .svg-elem-11{stroke-dashoffset:0}svg .svg-elem-12{stroke-dashoffset:43.39763641357422px;stroke-dasharray:43.39763641357422px;fill:transparent;-webkit-transition:stroke-dashoffset 0.9s cubic-bezier(0.6,-0.28,0.735,0.045) 3.6s,fill 0.7s cubic-bezier(0.6,0.04,0.98,0.335) 0.99s;transition:stroke-dashoffset 0.9s cubic-bezier(0.6,-0.28,0.735,0.045) 3.6s,fill 0.7s cubic-bezier(0.6,0.04,0.98,0.335) 0.99s}svg.active .svg-elem-12{stroke-dashoffset:0;fill:rgb(0,0,0)}svg .svg-elem-13{stroke-dashoffset:43.39763641357422px;stroke-dasharray:43.39763641357422px;-webkit-transition:stroke-dashoffset 0.9s cubic-bezier(0.6,-0.28,0.735,0.045) 3.7s,fill 0.7s cubic-bezier(0.6,0.04,0.98,0.335) 1.08s;transition:stroke-dashoffset 0.9s cubic-bezier(0.6,-0.28,0.735,0.045) 3.7s,fill 0.7s cubic-bezier(0.6,0.04,0.98,0.335) 1.08s}svg.active .svg-elem-13{stroke-dashoffset:0}svg .svg-elem-14{stroke-dashoffset:108.3414306640625px;stroke-dasharray:108.3414306640625px;fill:transparent;-webkit-transition:stroke-dashoffset 0.9s cubic-bezier(0.6,-0.28,0.735,0.045) 3.8s,fill 0.7s cubic-bezier(0.6,0.04,0.98,0.335) 1.17s;transition:stroke-dashoffset 0.9s cubic-bezier(0.6,-0.28,0.735,0.045) 3.8s,fill 0.7s cubic-bezier(0.6,0.04,0.98,0.335) 1.17s}svg.active .svg-elem-14{stroke-dashoffset:0;fill:rgb(0,0,0)}svg .svg-elem-15{stroke-dashoffset:108.3414306640625px;stroke-dasharray:108.3414306640625px;-webkit-transition:stroke-dashoffset 0.9s cubic-bezier(0.6,-0.28,0.735,0.045) 3.9000000000000004s,fill 0.7s cubic-bezier(0.6,0.04,0.98,0.335) 1.26s;transition:stroke-dashoffset 0.9s cubic-bezier(0.6,-0.28,0.735,0.045) 3.9000000000000004s,fill 0.7s cubic-bezier(0.6,0.04,0.98,0.335) 1.26s}svg.active .svg-elem-15{stroke-dashoffset:0}svg .svg-elem-16{stroke-dashoffset:75.88581085205078px;stroke-dasharray:75.88581085205078px;fill:transparent;-webkit-transition:stroke-dashoffset 0.9s cubic-bezier(0.6,-0.28,0.735,0.045) 4s,fill 0.7s cubic-bezier(0.6,0.04,0.98,0.335) 1.3499999999999999s;transition:stroke-dashoffset 0.9s cubic-bezier(0.6,-0.28,0.735,0.045) 4s,fill 0.7s cubic-bezier(0.6,0.04,0.98,0.335) 1.3499999999999999s}svg.active .svg-elem-16{stroke-dashoffset:0;fill:rgb(0,0,0)}svg .svg-elem-17{stroke-dashoffset:75.88581085205078px;stroke-dasharray:75.88581085205078px;-webkit-transition:stroke-dashoffset 0.9s cubic-bezier(0.6,-0.28,0.735,0.045) 4.1s,fill 0.7s cubic-bezier(0.6,0.04,0.98,0.335) 1.44s;transition:stroke-dashoffset 0.9s cubic-bezier(0.6,-0.28,0.735,0.045) 4.1s,fill 0.7s cubic-bezier(0.6,0.04,0.98,0.335) 1.44s}svg.active .svg-elem-17{stroke-dashoffset:0}svg .svg-elem-18{stroke-dashoffset:173.5455322265625px;stroke-dasharray:173.5455322265625px;fill:transparent;-webkit-transition:stroke-dashoffset 0.9s cubic-bezier(0.6,-0.28,0.735,0.045) 4.2s,fill 0.7s cubic-bezier(0.6,0.04,0.98,0.335) 1.53s;transition:stroke-dashoffset 0.9s cubic-bezier(0.6,-0.28,0.735,0.045) 4.2s,fill 0.7s cubic-bezier(0.6,0.04,0.98,0.335) 1.53s}svg.active .svg-elem-18{stroke-dashoffset:0;fill:rgb(0,179,159)}svg .svg-elem-19{stroke-dashoffset:173.5973358154297px;stroke-dasharray:173.5973358154297px;fill:transparent;-webkit-transition:stroke-dashoffset 0.9s cubic-bezier(0.6,-0.28,0.735,0.045) 4.3s,fill 0.7s cubic-bezier(0.6,0.04,0.98,0.335) 1.6199999999999999s;transition:stroke-dashoffset 0.9s cubic-bezier(0.6,-0.28,0.735,0.045) 4.3s,fill 0.7s cubic-bezier(0.6,0.04,0.98,0.335) 1.6199999999999999s}svg.active .svg-elem-19{stroke-dashoffset:0;fill:rgb(0,179,159)}svg .svg-elem-20{stroke-dashoffset:173.56723022460938px;stroke-dasharray:173.56723022460938px;fill:transparent;-webkit-transition:stroke-dashoffset 0.9s cubic-bezier(0.6,-0.28,0.735,0.045) 4.4s,fill 0.7s cubic-bezier(0.6,0.04,0.98,0.335) 1.71s;transition:stroke-dashoffset 0.9s cubic-bezier(0.6,-0.28,0.735,0.045) 4.4s,fill 0.7s cubic-bezier(0.6,0.04,0.98,0.335) 1.71s}svg.active .svg-elem-20{stroke-dashoffset:0;fill:rgb(0,179,159)}svg .svg-elem-21{stroke-dashoffset:75.43915557861328px;stroke-dasharray:75.43915557861328px;fill:transparent;-webkit-transition:stroke-dashoffset 0.9s cubic-bezier(0.6,-0.28,0.735,0.045) 4.5s,fill 0.7s cubic-bezier(0.6,0.04,0.98,0.335) 1.7999999999999998s;transition:stroke-dashoffset 0.9s cubic-bezier(0.6,-0.28,0.735,0.045) 4.5s,fill 0.7s cubic-bezier(0.6,0.04,0.98,0.335) 1.7999999999999998s}svg.active .svg-elem-21{stroke-dashoffset:0;fill:rgb(0,0,0)}svg .svg-elem-22{stroke-dashoffset:75.43915557861328px;stroke-dasharray:75.43915557861328px;-webkit-transition:stroke-dashoffset 0.9s cubic-bezier(0.6,-0.28,0.735,0.045) 4.6s,fill 0.7s cubic-bezier(0.6,0.04,0.98,0.335) 1.89s;transition:stroke-dashoffset 0.9s cubic-bezier(0.6,-0.28,0.735,0.045) 4.6s,fill 0.7s cubic-bezier(0.6,0.04,0.98,0.335) 1.89s}svg.active .svg-elem-22{stroke-dashoffset:0}svg .svg-elem-23{stroke-dashoffset:21.905780792236328px;stroke-dasharray:21.905780792236328px;fill:transparent;-webkit-transition:stroke-dashoffset 0.9s cubic-bezier(0.6,-0.28,0.735,0.045) 4.7s,fill 0.7s cubic-bezier(0.6,0.04,0.98,0.335) 1.98s;transition:stroke-dashoffset 0.9s cubic-bezier(0.6,-0.28,0.735,0.045) 4.7s,fill 0.7s cubic-bezier(0.6,0.04,0.98,0.335) 1.98s}svg.active .svg-elem-23{stroke-dashoffset:0;fill:rgb(0,0,0)}svg .svg-elem-24{stroke-dashoffset:21.905780792236328px;stroke-dasharray:21.905780792236328px;-webkit-transition:stroke-dashoffset 0.9s cubic-bezier(0.6,-0.28,0.735,0.045) 4.800000000000001s,fill 0.7s cubic-bezier(0.6,0.04,0.98,0.335) 2.07s;transition:stroke-dashoffset 0.9s cubic-bezier(0.6,-0.28,0.735,0.045) 4.800000000000001s,fill 0.7s cubic-bezier(0.6,0.04,0.98,0.335) 2.07s}svg.active .svg-elem-24{stroke-dashoffset:0}svg .svg-elem-25{stroke-dashoffset:15.808277130126953px;stroke-dasharray:15.808277130126953px;fill:transparent;-webkit-transition:stroke-dashoffset 0.9s cubic-bezier(0.6,-0.28,0.735,0.045) 4.9s,fill 0.7s cubic-bezier(0.6,0.04,0.98,0.335) 2.16s;transition:stroke-dashoffset 0.9s cubic-bezier(0.6,-0.28,0.735,0.045) 4.9s,fill 0.7s cubic-bezier(0.6,0.04,0.98,0.335) 2.16s}svg.active .svg-elem-25{stroke-dashoffset:0;fill:rgb(0,0,0)}svg .svg-elem-26{stroke-dashoffset:15.808277130126953px;stroke-dasharray:15.808277130126953px;-webkit-transition:stroke-dashoffset 0.9s cubic-bezier(0.6,-0.28,0.735,0.045) 5s,fill 0.7s cubic-bezier(0.6,0.04,0.98,0.335) 2.25s;transition:stroke-dashoffset 0.9s cubic-bezier(0.6,-0.28,0.735,0.045) 5s,fill 0.7s cubic-bezier(0.6,0.04,0.98,0.335) 2.25s}svg.active .svg-elem-26{stroke-dashoffset:0}svg .svg-elem-27{stroke-dashoffset:103.98786926269531px;stroke-dasharray:103.98786926269531px;fill:transparent;-webkit-transition:stroke-dashoffset 0.9s cubic-bezier(0.6,-0.28,0.735,0.045) 5.1s,fill 0.7s cubic-bezier(0.6,0.04,0.98,0.335) 2.34s;transition:stroke-dashoffset 0.9s cubic-bezier(0.6,-0.28,0.735,0.045) 5.1s,fill 0.7s cubic-bezier(0.6,0.04,0.98,0.335) 2.34s}svg.active .svg-elem-27{stroke-dashoffset:0;fill:rgb(0,0,0)}svg .svg-elem-28{stroke-dashoffset:103.98786926269531px;stroke-dasharray:103.98786926269531px;-webkit-transition:stroke-dashoffset 0.9s cubic-bezier(0.6,-0.28,0.735,0.045) 5.2s,fill 0.7s cubic-bezier(0.6,0.04,0.98,0.335) 2.4299999999999997s;transition:stroke-dashoffset 0.9s cubic-bezier(0.6,-0.28,0.735,0.045) 5.2s,fill 0.7s cubic-bezier(0.6,0.04,0.98,0.335) 2.4299999999999997s}svg.active .svg-elem-28{stroke-dashoffset:0}svg .svg-elem-29{stroke-dashoffset:173.5672149658203px;stroke-dasharray:173.5672149658203px;fill:transparent;-webkit-transition:stroke-dashoffset 0.9s cubic-bezier(0.6,-0.28,0.735,0.045) 5.300000000000001s,fill 0.7s cubic-bezier(0.6,0.04,0.98,0.335) 2.52s;transition:stroke-dashoffset 0.9s cubic-bezier(0.6,-0.28,0.735,0.045) 5.300000000000001s,fill 0.7s cubic-bezier(0.6,0.04,0.98,0.335) 2.52s}svg.active .svg-elem-29{stroke-dashoffset:0;fill:rgb(0,179,159)}svg .svg-elem-30{stroke-dashoffset:15.808284759521484px;stroke-dasharray:15.808284759521484px;fill:transparent;-webkit-transition:stroke-dashoffset 0.9s cubic-bezier(0.6,-0.28,0.735,0.045) 5.4s,fill 0.7s cubic-bezier(0.6,0.04,0.98,0.335) 2.61s;transition:stroke-dashoffset 0.9s cubic-bezier(0.6,-0.28,0.735,0.045) 5.4s,fill 0.7s cubic-bezier(0.6,0.04,0.98,0.335) 2.61s}svg.active .svg-elem-30{stroke-dashoffset:0;fill:rgb(0,0,0)}svg .svg-elem-31{stroke-dashoffset:15.808284759521484px;stroke-dasharray:15.808284759521484px;-webkit-transition:stroke-dashoffset 0.9s cubic-bezier(0.6,-0.28,0.735,0.045) 5.5s,fill 0.7s cubic-bezier(0.6,0.04,0.98,0.335) 2.6999999999999997s;transition:stroke-dashoffset 0.9s cubic-bezier(0.6,-0.28,0.735,0.045) 5.5s,fill 0.7s cubic-bezier(0.6,0.04,0.98,0.335) 2.6999999999999997s}svg.active .svg-elem-31{stroke-dashoffset:0}svg .svg-elem-32{stroke-dashoffset:75.43917846679688px;stroke-dasharray:75.43917846679688px;fill:transparent;-webkit-transition:stroke-dashoffset 0.9s cubic-bezier(0.6,-0.28,0.735,0.045) 5.6s,fill 0.7s cubic-bezier(0.6,0.04,0.98,0.335) 2.79s;transition:stroke-dashoffset 0.9s cubic-bezier(0.6,-0.28,0.735,0.045) 5.6s,fill 0.7s cubic-bezier(0.6,0.04,0.98,0.335) 2.79s}svg.active .svg-elem-32{stroke-dashoffset:0;fill:rgb(0,0,0)}svg .svg-elem-33{stroke-dashoffset:75.43917846679688px;stroke-dasharray:75.43917846679688px;-webkit-transition:stroke-dashoffset 0.9s cubic-bezier(0.6,-0.28,0.735,0.045) 5.7s,fill 0.7s cubic-bezier(0.6,0.04,0.98,0.335) 2.88s;transition:stroke-dashoffset 0.9s cubic-bezier(0.6,-0.28,0.735,0.045) 5.7s,fill 0.7s cubic-bezier(0.6,0.04,0.98,0.335) 2.88s}svg.active .svg-elem-33{stroke-dashoffset:0}svg .svg-elem-34{stroke-dashoffset:173.5671844482422px;stroke-dasharray:173.5671844482422px;fill:transparent;-webkit-transition:stroke-dashoffset 0.9s cubic-bezier(0.6,-0.28,0.735,0.045) 5.800000000000001s,fill 0.7s cubic-bezier(0.6,0.04,0.98,0.335) 2.9699999999999998s;transition:stroke-dashoffset 0.9s cubic-bezier(0.6,-0.28,0.735,0.045) 5.800000000000001s,fill 0.7s cubic-bezier(0.6,0.04,0.98,0.335) 2.9699999999999998s}svg.active .svg-elem-34{stroke-dashoffset:0;fill:rgb(0,179,159)}svg .svg-elem-35{stroke-dashoffset:173.567138671875px;stroke-dasharray:173.567138671875px;fill:transparent;-webkit-transition:stroke-dashoffset 0.9s cubic-bezier(0.6,-0.28,0.735,0.045) 5.9s,fill 0.7s cubic-bezier(0.6,0.04,0.98,0.335) 3.06s;transition:stroke-dashoffset 0.9s cubic-bezier(0.6,-0.28,0.735,0.045) 5.9s,fill 0.7s cubic-bezier(0.6,0.04,0.98,0.335) 3.06s}svg.active .svg-elem-35{stroke-dashoffset:0;fill:rgb(0,179,159)}svg .svg-elem-36{stroke-dashoffset:173.5671844482422px;stroke-dasharray:173.5671844482422px;fill:transparent;-webkit-transition:stroke-dashoffset 0.9s cubic-bezier(0.6,-0.28,0.735,0.045) 6s,fill 0.7s cubic-bezier(0.6,0.04,0.98,0.335) 3.15s;transition:stroke-dashoffset 0.9s cubic-bezier(0.6,-0.28,0.735,0.045) 6s,fill 0.7s cubic-bezier(0.6,0.04,0.98,0.335) 3.15s}svg.active .svg-elem-36{stroke-dashoffset:0;fill:rgb(0,179,159)}svg .svg-elem-37{stroke-dashoffset:75.42085266113281px;stroke-dasharray:75.42085266113281px;fill:transparent;-webkit-transition:stroke-dashoffset 0.9s cubic-bezier(0.6,-0.28,0.735,0.045) 6.1s,fill 0.7s cubic-bezier(0.6,0.04,0.98,0.335) 3.2399999999999998s;transition:stroke-dashoffset 0.9s cubic-bezier(0.6,-0.28,0.735,0.045) 6.1s,fill 0.7s cubic-bezier(0.6,0.04,0.98,0.335) 3.2399999999999998s}svg.active .svg-elem-37{stroke-dashoffset:0;fill:rgb(0,0,0)}svg .svg-elem-38{stroke-dashoffset:75.42085266113281px;stroke-dasharray:75.42085266113281px;-webkit-transition:stroke-dashoffset 0.9s cubic-bezier(0.6,-0.28,0.735,0.045) 6.2s,fill 0.7s cubic-bezier(0.6,0.04,0.98,0.335) 3.33s;transition:stroke-dashoffset 0.9s cubic-bezier(0.6,-0.28,0.735,0.045) 6.2s,fill 0.7s cubic-bezier(0.6,0.04,0.98,0.335) 3.33s}svg.active .svg-elem-38{stroke-dashoffset:0}svg .svg-elem-39{stroke-dashoffset:21.905784606933594px;stroke-dasharray:21.905784606933594px;fill:transparent;-webkit-transition:stroke-dashoffset 0.9s cubic-bezier(0.6,-0.28,0.735,0.045) 6.300000000000001s,fill 0.7s cubic-bezier(0.6,0.04,0.98,0.335) 3.42s;transition:stroke-dashoffset 0.9s cubic-bezier(0.6,-0.28,0.735,0.045) 6.300000000000001s,fill 0.7s cubic-bezier(0.6,0.04,0.98,0.335) 3.42s}svg.active .svg-elem-39{stroke-dashoffset:0;fill:rgb(0,0,0)}svg .svg-elem-40{stroke-dashoffset:21.905784606933594px;stroke-dasharray:21.905784606933594px;-webkit-transition:stroke-dashoffset 0.9s cubic-bezier(0.6,-0.28,0.735,0.045) 6.4s,fill 0.7s cubic-bezier(0.6,0.04,0.98,0.335) 3.51s;transition:stroke-dashoffset 0.9s cubic-bezier(0.6,-0.28,0.735,0.045) 6.4s,fill 0.7s cubic-bezier(0.6,0.04,0.98,0.335) 3.51s}svg.active .svg-elem-40{stroke-dashoffset:0}svg .svg-elem-41{stroke-dashoffset:15.808269500732422px;stroke-dasharray:15.808269500732422px;fill:transparent;-webkit-transition:stroke-dashoffset 0.9s cubic-bezier(0.6,-0.28,0.735,0.045) 6.5s,fill 0.7s cubic-bezier(0.6,0.04,0.98,0.335) 3.5999999999999996s;transition:stroke-dashoffset 0.9s cubic-bezier(0.6,-0.28,0.735,0.045) 6.5s,fill 0.7s cubic-bezier(0.6,0.04,0.98,0.335) 3.5999999999999996s}svg.active .svg-elem-41{stroke-dashoffset:0;fill:rgb(0,0,0)}svg .svg-elem-42{stroke-dashoffset:15.808269500732422px;stroke-dasharray:15.808269500732422px;-webkit-transition:stroke-dashoffset 0.9s cubic-bezier(0.6,-0.28,0.735,0.045) 6.6000000000000005s,fill 0.7s cubic-bezier(0.6,0.04,0.98,0.335) 3.69s;transition:stroke-dashoffset 0.9s cubic-bezier(0.6,-0.28,0.735,0.045) 6.6000000000000005s,fill 0.7s cubic-bezier(0.6,0.04,0.98,0.335) 3.69s}svg.active .svg-elem-42{stroke-dashoffset:0}svg .svg-elem-43{stroke-dashoffset:173.5672149658203px;stroke-dasharray:173.5672149658203px;fill:transparent;-webkit-transition:stroke-dashoffset 0.9s cubic-bezier(0.6,-0.28,0.735,0.045) 6.7s,fill 0.7s cubic-bezier(0.6,0.04,0.98,0.335) 3.78s;transition:stroke-dashoffset 0.9s cubic-bezier(0.6,-0.28,0.735,0.045) 6.7s,fill 0.7s cubic-bezier(0.6,0.04,0.98,0.335) 3.78s}svg.active .svg-elem-43{stroke-dashoffset:0;fill:rgb(0,179,159)}svg .svg-elem-44{stroke-dashoffset:15.808269500732422px;stroke-dasharray:15.808269500732422px;fill:transparent;-webkit-transition:stroke-dashoffset 0.9s cubic-bezier(0.6,-0.28,0.735,0.045) 6.8s,fill 0.7s cubic-bezier(0.6,0.04,0.98,0.335) 3.8699999999999997s;transition:stroke-dashoffset 0.9s cubic-bezier(0.6,-0.28,0.735,0.045) 6.8s,fill 0.7s cubic-bezier(0.6,0.04,0.98,0.335) 3.8699999999999997s}svg.active .svg-elem-44{stroke-dashoffset:0;fill:rgb(0,0,0)}svg .svg-elem-45{stroke-dashoffset:15.808269500732422px;stroke-dasharray:15.808269500732422px;-webkit-transition:stroke-dashoffset 0.9s cubic-bezier(0.6,-0.28,0.735,0.045) 6.9s,fill 0.7s cubic-bezier(0.6,0.04,0.98,0.335) 3.96s;transition:stroke-dashoffset 0.9s cubic-bezier(0.6,-0.28,0.735,0.045) 6.9s,fill 0.7s cubic-bezier(0.6,0.04,0.98,0.335) 3.96s}svg.active .svg-elem-45{stroke-dashoffset:0}svg .svg-elem-46{stroke-dashoffset:75.43917846679688px;stroke-dasharray:75.43917846679688px;fill:transparent;-webkit-transition:stroke-dashoffset 0.9s cubic-bezier(0.6,-0.28,0.735,0.045) 7s,fill 0.7s cubic-bezier(0.6,0.04,0.98,0.335) 4.05s;transition:stroke-dashoffset 0.9s cubic-bezier(0.6,-0.28,0.735,0.045) 7s,fill 0.7s cubic-bezier(0.6,0.04,0.98,0.335) 4.05s}svg.active .svg-elem-46{stroke-dashoffset:0;fill:rgb(0,0,0)}svg .svg-elem-47{stroke-dashoffset:75.43917846679688px;stroke-dasharray:75.43917846679688px;-webkit-transition:stroke-dashoffset 0.9s cubic-bezier(0.6,-0.28,0.735,0.045) 7.1000000000000005s,fill 0.7s cubic-bezier(0.6,0.04,0.98,0.335) 4.14s;transition:stroke-dashoffset 0.9s cubic-bezier(0.6,-0.28,0.735,0.045) 7.1000000000000005s,fill 0.7s cubic-bezier(0.6,0.04,0.98,0.335) 4.14s}svg.active .svg-elem-47{stroke-dashoffset:0} } diff --git a/src/sections/Home/service-mesh-management/index.js b/src/sections/Home/service-mesh-management/index.js index 7e192f3e3faf..75f446689b91 100644 --- a/src/sections/Home/service-mesh-management/index.js +++ b/src/sections/Home/service-mesh-management/index.js @@ -6,7 +6,7 @@ import { IoIosArrowForward } from "@react-icons/all-files/io/IoIosArrowForward"; import { Link } from "gatsby"; import { StaticImage } from "gatsby-plugin-image"; -const MeshMap = "../../../assets/images/homePage-images/meshmap.webp"; +const Kanvas = "../../../assets/images/homePage-images/kanvas.webp"; const ServiceMeshManagement = () => { return ( @@ -27,7 +27,7 @@ const ServiceMeshManagement = () => { - + diff --git a/src/sections/Meshmap/FeaturesSection/Collaborate/CollaboratorFeatures.js b/src/sections/Kanvas/FeaturesSection/Collaborate/CollaboratorFeatures.js similarity index 95% rename from src/sections/Meshmap/FeaturesSection/Collaborate/CollaboratorFeatures.js rename to src/sections/Kanvas/FeaturesSection/Collaborate/CollaboratorFeatures.js index bc6c4506c7d6..04082d9634cc 100644 --- a/src/sections/Meshmap/FeaturesSection/Collaborate/CollaboratorFeatures.js +++ b/src/sections/Kanvas/FeaturesSection/Collaborate/CollaboratorFeatures.js @@ -28,7 +28,7 @@ export default function CollaboratorFeatures({ features }) {
    - +

    Collaborate

    @@ -38,7 +38,7 @@ export default function CollaboratorFeatures({ features }) {
    - +
    diff --git a/src/sections/Meshmap/FeaturesSection/Collaborate/CollaboratorFeatures.style.js b/src/sections/Kanvas/FeaturesSection/Collaborate/CollaboratorFeatures.style.js similarity index 100% rename from src/sections/Meshmap/FeaturesSection/Collaborate/CollaboratorFeatures.style.js rename to src/sections/Kanvas/FeaturesSection/Collaborate/CollaboratorFeatures.style.js diff --git a/src/sections/Meshmap/FeaturesSection/Collaborate/CollaboratorFeatures_diagram.js b/src/sections/Kanvas/FeaturesSection/Collaborate/CollaboratorFeatures_diagram.js similarity index 100% rename from src/sections/Meshmap/FeaturesSection/Collaborate/CollaboratorFeatures_diagram.js rename to src/sections/Kanvas/FeaturesSection/Collaborate/CollaboratorFeatures_diagram.js diff --git a/src/sections/Meshmap/FeaturesSection/Collaborate/images/avatar1.webp b/src/sections/Kanvas/FeaturesSection/Collaborate/images/avatar1.webp similarity index 100% rename from src/sections/Meshmap/FeaturesSection/Collaborate/images/avatar1.webp rename to src/sections/Kanvas/FeaturesSection/Collaborate/images/avatar1.webp diff --git a/src/sections/Meshmap/FeaturesSection/Collaborate/images/avatar2.webp b/src/sections/Kanvas/FeaturesSection/Collaborate/images/avatar2.webp similarity index 100% rename from src/sections/Meshmap/FeaturesSection/Collaborate/images/avatar2.webp rename to src/sections/Kanvas/FeaturesSection/Collaborate/images/avatar2.webp diff --git a/src/sections/Meshmap/FeaturesSection/Collaborate/images/avatar3.webp b/src/sections/Kanvas/FeaturesSection/Collaborate/images/avatar3.webp similarity index 100% rename from src/sections/Meshmap/FeaturesSection/Collaborate/images/avatar3.webp rename to src/sections/Kanvas/FeaturesSection/Collaborate/images/avatar3.webp diff --git a/src/sections/Meshmap/FeaturesSection/Collaborate/images/collab1-colorMode.svg b/src/sections/Kanvas/FeaturesSection/Collaborate/images/collab1-colorMode.svg similarity index 100% rename from src/sections/Meshmap/FeaturesSection/Collaborate/images/collab1-colorMode.svg rename to src/sections/Kanvas/FeaturesSection/Collaborate/images/collab1-colorMode.svg diff --git a/src/sections/Meshmap/FeaturesSection/Collaborate/images/collab1-dark.svg b/src/sections/Kanvas/FeaturesSection/Collaborate/images/collab1-dark.svg similarity index 100% rename from src/sections/Meshmap/FeaturesSection/Collaborate/images/collab1-dark.svg rename to src/sections/Kanvas/FeaturesSection/Collaborate/images/collab1-dark.svg diff --git a/src/sections/Meshmap/FeaturesSection/Collaborate/images/collab1.svg b/src/sections/Kanvas/FeaturesSection/Collaborate/images/collab1.svg similarity index 100% rename from src/sections/Meshmap/FeaturesSection/Collaborate/images/collab1.svg rename to src/sections/Kanvas/FeaturesSection/Collaborate/images/collab1.svg diff --git a/src/sections/Meshmap/FeaturesSection/Collaborate/images/collab2-colorMode.svg b/src/sections/Kanvas/FeaturesSection/Collaborate/images/collab2-colorMode.svg similarity index 100% rename from src/sections/Meshmap/FeaturesSection/Collaborate/images/collab2-colorMode.svg rename to src/sections/Kanvas/FeaturesSection/Collaborate/images/collab2-colorMode.svg diff --git a/src/sections/Meshmap/FeaturesSection/Collaborate/images/collab2-dark.svg b/src/sections/Kanvas/FeaturesSection/Collaborate/images/collab2-dark.svg similarity index 100% rename from src/sections/Meshmap/FeaturesSection/Collaborate/images/collab2-dark.svg rename to src/sections/Kanvas/FeaturesSection/Collaborate/images/collab2-dark.svg diff --git a/src/sections/Meshmap/FeaturesSection/Collaborate/images/collab2.svg b/src/sections/Kanvas/FeaturesSection/Collaborate/images/collab2.svg similarity index 100% rename from src/sections/Meshmap/FeaturesSection/Collaborate/images/collab2.svg rename to src/sections/Kanvas/FeaturesSection/Collaborate/images/collab2.svg diff --git a/src/sections/Meshmap/FeaturesSection/Collaborate/images/collab3-colorMode.svg b/src/sections/Kanvas/FeaturesSection/Collaborate/images/collab3-colorMode.svg similarity index 100% rename from src/sections/Meshmap/FeaturesSection/Collaborate/images/collab3-colorMode.svg rename to src/sections/Kanvas/FeaturesSection/Collaborate/images/collab3-colorMode.svg diff --git a/src/sections/Meshmap/FeaturesSection/Collaborate/images/collab3-dark.svg b/src/sections/Kanvas/FeaturesSection/Collaborate/images/collab3-dark.svg similarity index 100% rename from src/sections/Meshmap/FeaturesSection/Collaborate/images/collab3-dark.svg rename to src/sections/Kanvas/FeaturesSection/Collaborate/images/collab3-dark.svg diff --git a/src/sections/Meshmap/FeaturesSection/Collaborate/images/collab3.svg b/src/sections/Kanvas/FeaturesSection/Collaborate/images/collab3.svg similarity index 100% rename from src/sections/Meshmap/FeaturesSection/Collaborate/images/collab3.svg rename to src/sections/Kanvas/FeaturesSection/Collaborate/images/collab3.svg diff --git a/src/sections/Meshmap/FeaturesSection/Collaborate/images/collab4-colorMode.svg b/src/sections/Kanvas/FeaturesSection/Collaborate/images/collab4-colorMode.svg similarity index 100% rename from src/sections/Meshmap/FeaturesSection/Collaborate/images/collab4-colorMode.svg rename to src/sections/Kanvas/FeaturesSection/Collaborate/images/collab4-colorMode.svg diff --git a/src/sections/Meshmap/FeaturesSection/Collaborate/images/collab4-dark.svg b/src/sections/Kanvas/FeaturesSection/Collaborate/images/collab4-dark.svg similarity index 100% rename from src/sections/Meshmap/FeaturesSection/Collaborate/images/collab4-dark.svg rename to src/sections/Kanvas/FeaturesSection/Collaborate/images/collab4-dark.svg diff --git a/src/sections/Meshmap/FeaturesSection/Collaborate/images/collab4.svg b/src/sections/Kanvas/FeaturesSection/Collaborate/images/collab4.svg similarity index 100% rename from src/sections/Meshmap/FeaturesSection/Collaborate/images/collab4.svg rename to src/sections/Kanvas/FeaturesSection/Collaborate/images/collab4.svg diff --git a/src/sections/Meshmap/FeaturesSection/Design/DesignerFeatures.js b/src/sections/Kanvas/FeaturesSection/Design/DesignerFeatures.js similarity index 96% rename from src/sections/Meshmap/FeaturesSection/Design/DesignerFeatures.js rename to src/sections/Kanvas/FeaturesSection/Design/DesignerFeatures.js index 1c86d07d9eaa..c31540688b4f 100644 --- a/src/sections/Meshmap/FeaturesSection/Design/DesignerFeatures.js +++ b/src/sections/Kanvas/FeaturesSection/Design/DesignerFeatures.js @@ -29,7 +29,7 @@ export default function DesignerFeatures({ features }) {
    - +

    Design

    @@ -39,7 +39,7 @@ export default function DesignerFeatures({ features }) {
    - +
    diff --git a/src/sections/Meshmap/FeaturesSection/Design/DesignerFeatures.style.js b/src/sections/Kanvas/FeaturesSection/Design/DesignerFeatures.style.js similarity index 100% rename from src/sections/Meshmap/FeaturesSection/Design/DesignerFeatures.style.js rename to src/sections/Kanvas/FeaturesSection/Design/DesignerFeatures.style.js diff --git a/src/sections/Meshmap/FeaturesSection/Design/DesignerFeatures_diagram.js b/src/sections/Kanvas/FeaturesSection/Design/DesignerFeatures_diagram.js similarity index 100% rename from src/sections/Meshmap/FeaturesSection/Design/DesignerFeatures_diagram.js rename to src/sections/Kanvas/FeaturesSection/Design/DesignerFeatures_diagram.js diff --git a/src/sections/Meshmap/FeaturesSection/Design/images/role-binding-1-colorMode.svg b/src/sections/Kanvas/FeaturesSection/Design/images/role-binding-1-colorMode.svg similarity index 100% rename from src/sections/Meshmap/FeaturesSection/Design/images/role-binding-1-colorMode.svg rename to src/sections/Kanvas/FeaturesSection/Design/images/role-binding-1-colorMode.svg diff --git a/src/sections/Meshmap/FeaturesSection/Design/images/role-binding-1-dark.svg b/src/sections/Kanvas/FeaturesSection/Design/images/role-binding-1-dark.svg similarity index 100% rename from src/sections/Meshmap/FeaturesSection/Design/images/role-binding-1-dark.svg rename to src/sections/Kanvas/FeaturesSection/Design/images/role-binding-1-dark.svg diff --git a/src/sections/Meshmap/FeaturesSection/Design/images/role-binding-1.svg b/src/sections/Kanvas/FeaturesSection/Design/images/role-binding-1.svg similarity index 100% rename from src/sections/Meshmap/FeaturesSection/Design/images/role-binding-1.svg rename to src/sections/Kanvas/FeaturesSection/Design/images/role-binding-1.svg diff --git a/src/sections/Meshmap/FeaturesSection/Design/images/role-binding-2-colorMode.svg b/src/sections/Kanvas/FeaturesSection/Design/images/role-binding-2-colorMode.svg similarity index 100% rename from src/sections/Meshmap/FeaturesSection/Design/images/role-binding-2-colorMode.svg rename to src/sections/Kanvas/FeaturesSection/Design/images/role-binding-2-colorMode.svg diff --git a/src/sections/Meshmap/FeaturesSection/Design/images/role-binding-2-dark.svg b/src/sections/Kanvas/FeaturesSection/Design/images/role-binding-2-dark.svg similarity index 100% rename from src/sections/Meshmap/FeaturesSection/Design/images/role-binding-2-dark.svg rename to src/sections/Kanvas/FeaturesSection/Design/images/role-binding-2-dark.svg diff --git a/src/sections/Meshmap/FeaturesSection/Design/images/role-binding-2.svg b/src/sections/Kanvas/FeaturesSection/Design/images/role-binding-2.svg similarity index 100% rename from src/sections/Meshmap/FeaturesSection/Design/images/role-binding-2.svg rename to src/sections/Kanvas/FeaturesSection/Design/images/role-binding-2.svg diff --git a/src/sections/Meshmap/FeaturesSection/Design/images/role-binding-3-colorMode.svg b/src/sections/Kanvas/FeaturesSection/Design/images/role-binding-3-colorMode.svg similarity index 100% rename from src/sections/Meshmap/FeaturesSection/Design/images/role-binding-3-colorMode.svg rename to src/sections/Kanvas/FeaturesSection/Design/images/role-binding-3-colorMode.svg diff --git a/src/sections/Meshmap/FeaturesSection/Design/images/role-binding-3-dark.svg b/src/sections/Kanvas/FeaturesSection/Design/images/role-binding-3-dark.svg similarity index 100% rename from src/sections/Meshmap/FeaturesSection/Design/images/role-binding-3-dark.svg rename to src/sections/Kanvas/FeaturesSection/Design/images/role-binding-3-dark.svg diff --git a/src/sections/Meshmap/FeaturesSection/Design/images/role-binding-3.svg b/src/sections/Kanvas/FeaturesSection/Design/images/role-binding-3.svg similarity index 100% rename from src/sections/Meshmap/FeaturesSection/Design/images/role-binding-3.svg rename to src/sections/Kanvas/FeaturesSection/Design/images/role-binding-3.svg diff --git a/src/sections/Meshmap/FeaturesSection/Design/images/role-binding-4-colorMode.svg b/src/sections/Kanvas/FeaturesSection/Design/images/role-binding-4-colorMode.svg similarity index 100% rename from src/sections/Meshmap/FeaturesSection/Design/images/role-binding-4-colorMode.svg rename to src/sections/Kanvas/FeaturesSection/Design/images/role-binding-4-colorMode.svg diff --git a/src/sections/Meshmap/FeaturesSection/Design/images/role-binding-4-dark.svg b/src/sections/Kanvas/FeaturesSection/Design/images/role-binding-4-dark.svg similarity index 100% rename from src/sections/Meshmap/FeaturesSection/Design/images/role-binding-4-dark.svg rename to src/sections/Kanvas/FeaturesSection/Design/images/role-binding-4-dark.svg diff --git a/src/sections/Meshmap/FeaturesSection/Design/images/role-binding-4.svg b/src/sections/Kanvas/FeaturesSection/Design/images/role-binding-4.svg similarity index 100% rename from src/sections/Meshmap/FeaturesSection/Design/images/role-binding-4.svg rename to src/sections/Kanvas/FeaturesSection/Design/images/role-binding-4.svg diff --git a/src/sections/Meshmap/FeaturesSection/Visualize/VisualizerFeatures.js b/src/sections/Kanvas/FeaturesSection/Visualize/VisualizerFeatures.js similarity index 95% rename from src/sections/Meshmap/FeaturesSection/Visualize/VisualizerFeatures.js rename to src/sections/Kanvas/FeaturesSection/Visualize/VisualizerFeatures.js index f5ff5728f4c8..9fb6483251f4 100644 --- a/src/sections/Meshmap/FeaturesSection/Visualize/VisualizerFeatures.js +++ b/src/sections/Kanvas/FeaturesSection/Visualize/VisualizerFeatures.js @@ -30,7 +30,7 @@ export default function VisualizerFeatures({ features }) {
    - +

    Visualize

    @@ -40,7 +40,7 @@ export default function VisualizerFeatures({ features }) {
    - +
    diff --git a/src/sections/Meshmap/FeaturesSection/Visualize/VisualizerFeatures.style.js b/src/sections/Kanvas/FeaturesSection/Visualize/VisualizerFeatures.style.js similarity index 100% rename from src/sections/Meshmap/FeaturesSection/Visualize/VisualizerFeatures.style.js rename to src/sections/Kanvas/FeaturesSection/Visualize/VisualizerFeatures.style.js diff --git a/src/sections/Meshmap/FeaturesSection/Visualize/VisualizerFeatures_diagram.js b/src/sections/Kanvas/FeaturesSection/Visualize/VisualizerFeatures_diagram.js similarity index 100% rename from src/sections/Meshmap/FeaturesSection/Visualize/VisualizerFeatures_diagram.js rename to src/sections/Kanvas/FeaturesSection/Visualize/VisualizerFeatures_diagram.js diff --git a/src/sections/Meshmap/FeaturesSection/Visualize/images/visualize-1-colorMode.svg b/src/sections/Kanvas/FeaturesSection/Visualize/images/visualize-1-colorMode.svg similarity index 100% rename from src/sections/Meshmap/FeaturesSection/Visualize/images/visualize-1-colorMode.svg rename to src/sections/Kanvas/FeaturesSection/Visualize/images/visualize-1-colorMode.svg diff --git a/src/sections/Meshmap/FeaturesSection/Visualize/images/visualize-1-dark.svg b/src/sections/Kanvas/FeaturesSection/Visualize/images/visualize-1-dark.svg similarity index 100% rename from src/sections/Meshmap/FeaturesSection/Visualize/images/visualize-1-dark.svg rename to src/sections/Kanvas/FeaturesSection/Visualize/images/visualize-1-dark.svg diff --git a/src/sections/Meshmap/FeaturesSection/Visualize/images/visualize-1.svg b/src/sections/Kanvas/FeaturesSection/Visualize/images/visualize-1.svg similarity index 100% rename from src/sections/Meshmap/FeaturesSection/Visualize/images/visualize-1.svg rename to src/sections/Kanvas/FeaturesSection/Visualize/images/visualize-1.svg diff --git a/src/sections/Meshmap/FeaturesSection/Visualize/images/visualize-2-colorMode.svg b/src/sections/Kanvas/FeaturesSection/Visualize/images/visualize-2-colorMode.svg similarity index 100% rename from src/sections/Meshmap/FeaturesSection/Visualize/images/visualize-2-colorMode.svg rename to src/sections/Kanvas/FeaturesSection/Visualize/images/visualize-2-colorMode.svg diff --git a/src/sections/Meshmap/FeaturesSection/Visualize/images/visualize-2-dark.svg b/src/sections/Kanvas/FeaturesSection/Visualize/images/visualize-2-dark.svg similarity index 100% rename from src/sections/Meshmap/FeaturesSection/Visualize/images/visualize-2-dark.svg rename to src/sections/Kanvas/FeaturesSection/Visualize/images/visualize-2-dark.svg diff --git a/src/sections/Meshmap/FeaturesSection/Visualize/images/visualize-2.svg b/src/sections/Kanvas/FeaturesSection/Visualize/images/visualize-2.svg similarity index 100% rename from src/sections/Meshmap/FeaturesSection/Visualize/images/visualize-2.svg rename to src/sections/Kanvas/FeaturesSection/Visualize/images/visualize-2.svg diff --git a/src/sections/Meshmap/FeaturesSection/useGsapTimeline.js b/src/sections/Kanvas/FeaturesSection/useGsapTimeline.js similarity index 100% rename from src/sections/Meshmap/FeaturesSection/useGsapTimeline.js rename to src/sections/Kanvas/FeaturesSection/useGsapTimeline.js diff --git a/src/sections/Meshmap/Meshmap-collaborate/collaboration-feature-team.js b/src/sections/Kanvas/Kanvas-collaborate/collaboration-feature-team.js similarity index 100% rename from src/sections/Meshmap/Meshmap-collaborate/collaboration-feature-team.js rename to src/sections/Kanvas/Kanvas-collaborate/collaboration-feature-team.js diff --git a/src/sections/Meshmap/Meshmap-collaborate/collaboration-feature-terms.js b/src/sections/Kanvas/Kanvas-collaborate/collaboration-feature-terms.js similarity index 100% rename from src/sections/Meshmap/Meshmap-collaborate/collaboration-feature-terms.js rename to src/sections/Kanvas/Kanvas-collaborate/collaboration-feature-terms.js diff --git a/src/sections/Meshmap/Meshmap-collaborate/collaboration-feature-work.js b/src/sections/Kanvas/Kanvas-collaborate/collaboration-feature-work.js similarity index 100% rename from src/sections/Meshmap/Meshmap-collaborate/collaboration-feature-work.js rename to src/sections/Kanvas/Kanvas-collaborate/collaboration-feature-work.js diff --git a/src/sections/Meshmap/Meshmap-collaborate/images/banner-transitions/canvas.svg b/src/sections/Kanvas/Kanvas-collaborate/images/banner-transitions/canvas.svg similarity index 100% rename from src/sections/Meshmap/Meshmap-collaborate/images/banner-transitions/canvas.svg rename to src/sections/Kanvas/Kanvas-collaborate/images/banner-transitions/canvas.svg diff --git a/src/sections/Meshmap/Meshmap-collaborate/images/banner-transitions/empty-dark.svg b/src/sections/Kanvas/Kanvas-collaborate/images/banner-transitions/empty-dark.svg similarity index 100% rename from src/sections/Meshmap/Meshmap-collaborate/images/banner-transitions/empty-dark.svg rename to src/sections/Kanvas/Kanvas-collaborate/images/banner-transitions/empty-dark.svg diff --git a/src/sections/Meshmap/Meshmap-collaborate/images/banner-transitions/empty-light.svg b/src/sections/Kanvas/Kanvas-collaborate/images/banner-transitions/empty-light.svg similarity index 100% rename from src/sections/Meshmap/Meshmap-collaborate/images/banner-transitions/empty-light.svg rename to src/sections/Kanvas/Kanvas-collaborate/images/banner-transitions/empty-light.svg diff --git a/src/sections/Meshmap/Meshmap-collaborate/images/banner-transitions/ingress-gateway-partial-colorMode.svg b/src/sections/Kanvas/Kanvas-collaborate/images/banner-transitions/ingress-gateway-partial-colorMode.svg similarity index 100% rename from src/sections/Meshmap/Meshmap-collaborate/images/banner-transitions/ingress-gateway-partial-colorMode.svg rename to src/sections/Kanvas/Kanvas-collaborate/images/banner-transitions/ingress-gateway-partial-colorMode.svg diff --git a/src/sections/Meshmap/Meshmap-collaborate/images/banner-transitions/ingress-gateway-partial-dark.svg b/src/sections/Kanvas/Kanvas-collaborate/images/banner-transitions/ingress-gateway-partial-dark.svg similarity index 100% rename from src/sections/Meshmap/Meshmap-collaborate/images/banner-transitions/ingress-gateway-partial-dark.svg rename to src/sections/Kanvas/Kanvas-collaborate/images/banner-transitions/ingress-gateway-partial-dark.svg diff --git a/src/sections/Meshmap/Meshmap-collaborate/images/banner-transitions/ingress-gateway-partial.svg b/src/sections/Kanvas/Kanvas-collaborate/images/banner-transitions/ingress-gateway-partial.svg similarity index 100% rename from src/sections/Meshmap/Meshmap-collaborate/images/banner-transitions/ingress-gateway-partial.svg rename to src/sections/Kanvas/Kanvas-collaborate/images/banner-transitions/ingress-gateway-partial.svg diff --git a/src/sections/Meshmap/Meshmap-collaborate/images/banner-transitions/kubernetes-navbar-light.svg b/src/sections/Kanvas/Kanvas-collaborate/images/banner-transitions/kubernetes-navbar-light.svg similarity index 100% rename from src/sections/Meshmap/Meshmap-collaborate/images/banner-transitions/kubernetes-navbar-light.svg rename to src/sections/Kanvas/Kanvas-collaborate/images/banner-transitions/kubernetes-navbar-light.svg diff --git a/src/sections/Meshmap/Meshmap-collaborate/images/banner-transitions/kubernetes-navbar.svg b/src/sections/Kanvas/Kanvas-collaborate/images/banner-transitions/kubernetes-navbar.svg similarity index 100% rename from src/sections/Meshmap/Meshmap-collaborate/images/banner-transitions/kubernetes-navbar.svg rename to src/sections/Kanvas/Kanvas-collaborate/images/banner-transitions/kubernetes-navbar.svg diff --git a/src/sections/Meshmap/Meshmap-collaborate/images/banner-transitions/kubernetes-partial-colorMode.svg b/src/sections/Kanvas/Kanvas-collaborate/images/banner-transitions/kubernetes-partial-colorMode.svg similarity index 100% rename from src/sections/Meshmap/Meshmap-collaborate/images/banner-transitions/kubernetes-partial-colorMode.svg rename to src/sections/Kanvas/Kanvas-collaborate/images/banner-transitions/kubernetes-partial-colorMode.svg diff --git a/src/sections/Meshmap/Meshmap-collaborate/images/banner-transitions/kubernetes-partial-dark.svg b/src/sections/Kanvas/Kanvas-collaborate/images/banner-transitions/kubernetes-partial-dark.svg similarity index 100% rename from src/sections/Meshmap/Meshmap-collaborate/images/banner-transitions/kubernetes-partial-dark.svg rename to src/sections/Kanvas/Kanvas-collaborate/images/banner-transitions/kubernetes-partial-dark.svg diff --git a/src/sections/Meshmap/Meshmap-collaborate/images/banner-transitions/kubernetes-partial.svg b/src/sections/Kanvas/Kanvas-collaborate/images/banner-transitions/kubernetes-partial.svg similarity index 100% rename from src/sections/Meshmap/Meshmap-collaborate/images/banner-transitions/kubernetes-partial.svg rename to src/sections/Kanvas/Kanvas-collaborate/images/banner-transitions/kubernetes-partial.svg diff --git a/src/sections/Meshmap/Meshmap-collaborate/images/banner-transitions/pod-partial-colorMode.svg b/src/sections/Kanvas/Kanvas-collaborate/images/banner-transitions/pod-partial-colorMode.svg similarity index 100% rename from src/sections/Meshmap/Meshmap-collaborate/images/banner-transitions/pod-partial-colorMode.svg rename to src/sections/Kanvas/Kanvas-collaborate/images/banner-transitions/pod-partial-colorMode.svg diff --git a/src/sections/Meshmap/Meshmap-collaborate/images/banner-transitions/pod-partial-dark.svg b/src/sections/Kanvas/Kanvas-collaborate/images/banner-transitions/pod-partial-dark.svg similarity index 100% rename from src/sections/Meshmap/Meshmap-collaborate/images/banner-transitions/pod-partial-dark.svg rename to src/sections/Kanvas/Kanvas-collaborate/images/banner-transitions/pod-partial-dark.svg diff --git a/src/sections/Meshmap/Meshmap-collaborate/images/banner-transitions/pod-partial.svg b/src/sections/Kanvas/Kanvas-collaborate/images/banner-transitions/pod-partial.svg similarity index 100% rename from src/sections/Meshmap/Meshmap-collaborate/images/banner-transitions/pod-partial.svg rename to src/sections/Kanvas/Kanvas-collaborate/images/banner-transitions/pod-partial.svg diff --git a/src/sections/Meshmap/Meshmap-collaborate/images/banner-transitions/prometheus-partial-colorMode.svg b/src/sections/Kanvas/Kanvas-collaborate/images/banner-transitions/prometheus-partial-colorMode.svg similarity index 100% rename from src/sections/Meshmap/Meshmap-collaborate/images/banner-transitions/prometheus-partial-colorMode.svg rename to src/sections/Kanvas/Kanvas-collaborate/images/banner-transitions/prometheus-partial-colorMode.svg diff --git a/src/sections/Meshmap/Meshmap-collaborate/images/banner-transitions/prometheus-partial-dark.svg b/src/sections/Kanvas/Kanvas-collaborate/images/banner-transitions/prometheus-partial-dark.svg similarity index 100% rename from src/sections/Meshmap/Meshmap-collaborate/images/banner-transitions/prometheus-partial-dark.svg rename to src/sections/Kanvas/Kanvas-collaborate/images/banner-transitions/prometheus-partial-dark.svg diff --git a/src/sections/Meshmap/Meshmap-collaborate/images/banner-transitions/prometheus-partial.svg b/src/sections/Kanvas/Kanvas-collaborate/images/banner-transitions/prometheus-partial.svg similarity index 100% rename from src/sections/Meshmap/Meshmap-collaborate/images/banner-transitions/prometheus-partial.svg rename to src/sections/Kanvas/Kanvas-collaborate/images/banner-transitions/prometheus-partial.svg diff --git a/src/sections/Meshmap/Meshmap-collaborate/images/banner-transitions/service-interface-partial-colorMode.svg b/src/sections/Kanvas/Kanvas-collaborate/images/banner-transitions/service-interface-partial-colorMode.svg similarity index 100% rename from src/sections/Meshmap/Meshmap-collaborate/images/banner-transitions/service-interface-partial-colorMode.svg rename to src/sections/Kanvas/Kanvas-collaborate/images/banner-transitions/service-interface-partial-colorMode.svg diff --git a/src/sections/Meshmap/Meshmap-collaborate/images/banner-transitions/service-interface-partial-dark.svg b/src/sections/Kanvas/Kanvas-collaborate/images/banner-transitions/service-interface-partial-dark.svg similarity index 100% rename from src/sections/Meshmap/Meshmap-collaborate/images/banner-transitions/service-interface-partial-dark.svg rename to src/sections/Kanvas/Kanvas-collaborate/images/banner-transitions/service-interface-partial-dark.svg diff --git a/src/sections/Meshmap/Meshmap-collaborate/images/banner-transitions/service-interface-partial.svg b/src/sections/Kanvas/Kanvas-collaborate/images/banner-transitions/service-interface-partial.svg similarity index 100% rename from src/sections/Meshmap/Meshmap-collaborate/images/banner-transitions/service-interface-partial.svg rename to src/sections/Kanvas/Kanvas-collaborate/images/banner-transitions/service-interface-partial.svg diff --git a/src/sections/Meshmap/Meshmap-collaborate/images/banner-transitions/supporting-arrows.svg b/src/sections/Kanvas/Kanvas-collaborate/images/banner-transitions/supporting-arrows.svg similarity index 100% rename from src/sections/Meshmap/Meshmap-collaborate/images/banner-transitions/supporting-arrows.svg rename to src/sections/Kanvas/Kanvas-collaborate/images/banner-transitions/supporting-arrows.svg diff --git a/src/sections/Meshmap/Meshmap-collaborate/images/world-transitions/world-1.svg b/src/sections/Kanvas/Kanvas-collaborate/images/world-transitions/world-1.svg similarity index 100% rename from src/sections/Meshmap/Meshmap-collaborate/images/world-transitions/world-1.svg rename to src/sections/Kanvas/Kanvas-collaborate/images/world-transitions/world-1.svg diff --git a/src/sections/Meshmap/Meshmap-collaborate/images/world-transitions/world-2.svg b/src/sections/Kanvas/Kanvas-collaborate/images/world-transitions/world-2.svg similarity index 100% rename from src/sections/Meshmap/Meshmap-collaborate/images/world-transitions/world-2.svg rename to src/sections/Kanvas/Kanvas-collaborate/images/world-transitions/world-2.svg diff --git a/src/sections/Meshmap/Meshmap-collaborate/images/world-transitions/world-3.svg b/src/sections/Kanvas/Kanvas-collaborate/images/world-transitions/world-3.svg similarity index 100% rename from src/sections/Meshmap/Meshmap-collaborate/images/world-transitions/world-3.svg rename to src/sections/Kanvas/Kanvas-collaborate/images/world-transitions/world-3.svg diff --git a/src/sections/Meshmap/Meshmap-collaborate/images/world-transitions/world-4.svg b/src/sections/Kanvas/Kanvas-collaborate/images/world-transitions/world-4.svg similarity index 100% rename from src/sections/Meshmap/Meshmap-collaborate/images/world-transitions/world-4.svg rename to src/sections/Kanvas/Kanvas-collaborate/images/world-transitions/world-4.svg diff --git a/src/sections/Meshmap/Meshmap-collaborate/images/world-transitions/world-5.svg b/src/sections/Kanvas/Kanvas-collaborate/images/world-transitions/world-5.svg similarity index 100% rename from src/sections/Meshmap/Meshmap-collaborate/images/world-transitions/world-5.svg rename to src/sections/Kanvas/Kanvas-collaborate/images/world-transitions/world-5.svg diff --git a/src/sections/Meshmap/Meshmap-collaborate/images/world-transitions/world-6.svg b/src/sections/Kanvas/Kanvas-collaborate/images/world-transitions/world-6.svg similarity index 100% rename from src/sections/Meshmap/Meshmap-collaborate/images/world-transitions/world-6.svg rename to src/sections/Kanvas/Kanvas-collaborate/images/world-transitions/world-6.svg diff --git a/src/sections/Meshmap/Meshmap-collaborate/images/world-transitions/world-7.svg b/src/sections/Kanvas/Kanvas-collaborate/images/world-transitions/world-7.svg similarity index 100% rename from src/sections/Meshmap/Meshmap-collaborate/images/world-transitions/world-7.svg rename to src/sections/Kanvas/Kanvas-collaborate/images/world-transitions/world-7.svg diff --git a/src/sections/Meshmap/Meshmap-collaborate/images/world-transitions/world-image.svg b/src/sections/Kanvas/Kanvas-collaborate/images/world-transitions/world-image.svg similarity index 100% rename from src/sections/Meshmap/Meshmap-collaborate/images/world-transitions/world-image.svg rename to src/sections/Kanvas/Kanvas-collaborate/images/world-transitions/world-image.svg diff --git a/src/sections/Meshmap/Meshmap-collaborate/index.js b/src/sections/Kanvas/Kanvas-collaborate/index.js similarity index 58% rename from src/sections/Meshmap/Meshmap-collaborate/index.js rename to src/sections/Kanvas/Kanvas-collaborate/index.js index 357ae4c63560..a4712bd76ca8 100644 --- a/src/sections/Meshmap/Meshmap-collaborate/index.js +++ b/src/sections/Kanvas/Kanvas-collaborate/index.js @@ -1,6 +1,6 @@ import React from "react"; -import MeshmapCollaborateWrapper from "./meshmap-collaborate.style"; -import MeshmapCollaborateBanner from "./meshmap-collaborate-banner"; +import KanvasCollaborateWrapper from "./kanvas-collaborate.style"; +import KanvasCollaborateBanner from "./kanvas-collaborate-banner"; import CollaborationFeatureTeam from "./collaboration-feature-team"; import CollaborationFeatureWork from "./collaboration-feature-work"; @@ -8,17 +8,17 @@ import SignupForm from "./../signup-form"; import Reviews from "../../Pricing/review-slider"; -const MeshmapCollaborate = () => { +const KanvasCollaborate = () => { return ( - - + + {/* */} - + ); }; -export default MeshmapCollaborate; +export default KanvasCollaborate; diff --git a/src/sections/Meshmap/Meshmap-collaborate/index.test.js b/src/sections/Kanvas/Kanvas-collaborate/index.test.js similarity index 68% rename from src/sections/Meshmap/Meshmap-collaborate/index.test.js rename to src/sections/Kanvas/Kanvas-collaborate/index.test.js index 293b1fc35124..8e8fd5cbb5ab 100644 --- a/src/sections/Meshmap/Meshmap-collaborate/index.test.js +++ b/src/sections/Kanvas/Kanvas-collaborate/index.test.js @@ -1,7 +1,7 @@ import React from 'react'; import { shallow } from 'enzyme'; -import Meshmap from './index'; +import Kanvas from './index'; it('Blog-sidebar renders without crashing', () => { - shallow(); + shallow(); }); \ No newline at end of file diff --git a/src/sections/Meshmap/Meshmap-collaborate/meshmap-collaborate-banner.js b/src/sections/Kanvas/Kanvas-collaborate/kanvas-collaborate-banner.js similarity index 98% rename from src/sections/Meshmap/Meshmap-collaborate/meshmap-collaborate-banner.js rename to src/sections/Kanvas/Kanvas-collaborate/kanvas-collaborate-banner.js index d63ad955c9c6..a71e51784596 100644 --- a/src/sections/Meshmap/Meshmap-collaborate/meshmap-collaborate-banner.js +++ b/src/sections/Kanvas/Kanvas-collaborate/kanvas-collaborate-banner.js @@ -179,7 +179,7 @@ const CollaborationBannerWrapper = styled.div` } `; -const MeshmapCollaborateBanner = () => { +const KanvasCollaborateBanner = () => { const [transitionRef, inView] = useInView({ threshold: 0.7 }); const [imageInView, setimageInView] = useState(false); if (inView && !imageInView) @@ -221,4 +221,4 @@ const MeshmapCollaborateBanner = () => { ); }; -export default MeshmapCollaborateBanner; \ No newline at end of file +export default KanvasCollaborateBanner; \ No newline at end of file diff --git a/src/sections/Meshmap/Meshmap-collaborate/meshmap-collaborate.style.js b/src/sections/Kanvas/Kanvas-collaborate/kanvas-collaborate.style.js similarity index 88% rename from src/sections/Meshmap/Meshmap-collaborate/meshmap-collaborate.style.js rename to src/sections/Kanvas/Kanvas-collaborate/kanvas-collaborate.style.js index 93bdb26334b0..2247176a8018 100644 --- a/src/sections/Meshmap/Meshmap-collaborate/meshmap-collaborate.style.js +++ b/src/sections/Kanvas/Kanvas-collaborate/kanvas-collaborate.style.js @@ -1,6 +1,6 @@ import styled from "styled-components"; -const MeshmapCollaborateWrapper = styled.div` +const KanvasCollaborateWrapper = styled.div` display: flex; flex-direction: column; @@ -39,4 +39,4 @@ const MeshmapCollaborateWrapper = styled.div` `; -export default MeshmapCollaborateWrapper; +export default KanvasCollaborateWrapper; diff --git a/src/sections/Meshmap/Meshmap-design/Meshmap-design-features/index.js b/src/sections/Kanvas/Kanvas-design/Kanvas-design-features/index.js similarity index 75% rename from src/sections/Meshmap/Meshmap-design/Meshmap-design-features/index.js rename to src/sections/Kanvas/Kanvas-design/Kanvas-design-features/index.js index 5f9fecd3ace0..923964519065 100644 --- a/src/sections/Meshmap/Meshmap-design/Meshmap-design-features/index.js +++ b/src/sections/Kanvas/Kanvas-design/Kanvas-design-features/index.js @@ -4,12 +4,12 @@ import { Container } from "../../../../reusecore/Layout"; import Features from "../../../../components/Features-carousel"; import { StaticImage } from "gatsby-plugin-image"; -const img1 = "../../../../assets/images/meshmap/MeshmapDesigner.webp"; -const img2 = "../../../../assets/images/meshmap/MeshmapDesigner.webp"; -const img3 = "../../../../assets/images/meshmap/MeshmapDesigner.webp"; -const img4 = "../../../../assets/images/meshmap/MeshmapDesigner.webp"; +const img1 = "../../../../assets/images/kanvas/KanvasDesigner.webp"; +const img2 = "../../../../assets/images/kanvas/KanvasDesigner.webp"; +const img3 = "../../../../assets/images/kanvas/KanvasDesigner.webp"; +const img4 = "../../../../assets/images/kanvas/KanvasDesigner.webp"; -const MeshmapDesignFeaturesWrapper = styled.div` +const KanvasDesignFeaturesWrapper = styled.div` margin: auto; margin-top: 12% !important; margin-bottom: 12%; @@ -33,9 +33,9 @@ const MeshmapDesignFeaturesWrapper = styled.div` } `; -const MeshmapDesignFeatures = () => { +const KanvasDesignFeatures = () => { return ( - + { title: "Design your deployments the way you want", description: "Drag-and-drop your cloud native infrastructure using a palette of thousands of versioned Kubernetes components. Say goodbye to YAML configurations.", - learnMoreLink: "/cloud-native-management/meshmap", + learnMoreLink: "/cloud-native-management/kanvas", content: , }, { title: "Manage your applications visually and intuitively", description: "Play with powerful features including context-aware designs and namespace configurations to easily manage all services.", - learnMoreLink: "/cloud-native-management/meshmap", + learnMoreLink: "/cloud-native-management/kanvas", content: ( ), @@ -59,7 +59,7 @@ const MeshmapDesignFeatures = () => { title: "Build the bridge", description: "Go from developer handoffs to ongoing conversations with a shared language between design and development.", - learnMoreLink: "/cloud-native-management/meshmap", + learnMoreLink: "/cloud-native-management/kanvas", content: ( ), @@ -71,13 +71,13 @@ const MeshmapDesignFeatures = () => { content: ( ), - learnMoreLink: "/cloud-native-management/meshmap", + learnMoreLink: "/cloud-native-management/kanvas", } ]} /> - + ); }; -export default MeshmapDesignFeatures; \ No newline at end of file +export default KanvasDesignFeatures; \ No newline at end of file diff --git a/src/sections/Meshmap/Meshmap-design/Meshmap_Mobile_swiper/MeshmapMobileSwiper.js b/src/sections/Kanvas/Kanvas-design/Kanvas_Mobile_swiper/KanvasMobileSwiper.js similarity index 86% rename from src/sections/Meshmap/Meshmap-design/Meshmap_Mobile_swiper/MeshmapMobileSwiper.js rename to src/sections/Kanvas/Kanvas-design/Kanvas_Mobile_swiper/KanvasMobileSwiper.js index 1cb1e20f7a42..a4b8f37a159d 100644 --- a/src/sections/Meshmap/Meshmap-design/Meshmap_Mobile_swiper/MeshmapMobileSwiper.js +++ b/src/sections/Kanvas/Kanvas-design/Kanvas_Mobile_swiper/KanvasMobileSwiper.js @@ -16,14 +16,14 @@ const CONTENT = [ title: "Confidently make changes to your infrastructure", img: dragDrop, description: - "MeshMap automatically catalogs and provides insight into all of your services, datastores and the connections between them, allowing teams to deeply understand application architecture.", + "Kanvas automatically catalogs and provides insight into all of your services, datastores and the connections between them, allowing teams to deeply understand application architecture.", gradient: "one", }, { title: "Understand your infrastructure with visualization and automation", img: mergeDesign, description: - "MeshMap helps your team automate infrastructure understanding from the architecture to a single PR so your team can ship, refactor and onboard to legacy or existing applications faster.", + "Kanvaselps your team automate infrastructure understanding from the architecture to a single PR so your team can ship, refactor and onboard to legacy or existing applications faster.", gradient: "two", }, { @@ -55,7 +55,7 @@ const Card = ({ title, description, img, readMoreLink }) => { ); }; -export const MeshmapMobileSwiper = () => { +export const KanvasMobileSwiper = () => { return (

    Multi user real time collaboration

    diff --git a/src/sections/Meshmap/Meshmap-design/Meshmap_Mobile_swiper/images/BlankSwiper.webp b/src/sections/Kanvas/Kanvas-design/Kanvas_Mobile_swiper/images/BlankSwiper.webp similarity index 100% rename from src/sections/Meshmap/Meshmap-design/Meshmap_Mobile_swiper/images/BlankSwiper.webp rename to src/sections/Kanvas/Kanvas-design/Kanvas_Mobile_swiper/images/BlankSwiper.webp diff --git a/src/sections/Meshmap/Meshmap-design/Meshmap_Mobile_swiper/mobile-swiper.style.js b/src/sections/Kanvas/Kanvas-design/Kanvas_Mobile_swiper/mobile-swiper.style.js similarity index 100% rename from src/sections/Meshmap/Meshmap-design/Meshmap_Mobile_swiper/mobile-swiper.style.js rename to src/sections/Kanvas/Kanvas-design/Kanvas_Mobile_swiper/mobile-swiper.style.js diff --git a/src/sections/Meshmap/Meshmap-design/cytoscape-demo.js b/src/sections/Kanvas/Kanvas-design/cytoscape-demo.js similarity index 100% rename from src/sections/Meshmap/Meshmap-design/cytoscape-demo.js rename to src/sections/Kanvas/Kanvas-design/cytoscape-demo.js diff --git a/src/sections/Meshmap/Meshmap-design/cytoscape-demo.style.js b/src/sections/Kanvas/Kanvas-design/cytoscape-demo.style.js similarity index 100% rename from src/sections/Meshmap/Meshmap-design/cytoscape-demo.style.js rename to src/sections/Kanvas/Kanvas-design/cytoscape-demo.style.js diff --git a/src/sections/Meshmap/Meshmap-design/cytoscapeCanvas.js b/src/sections/Kanvas/Kanvas-design/cytoscapeCanvas.js similarity index 100% rename from src/sections/Meshmap/Meshmap-design/cytoscapeCanvas.js rename to src/sections/Kanvas/Kanvas-design/cytoscapeCanvas.js diff --git a/src/sections/Meshmap/Meshmap-design/images/background-dots-pattern.svg b/src/sections/Kanvas/Kanvas-design/images/background-dots-pattern.svg similarity index 100% rename from src/sections/Meshmap/Meshmap-design/images/background-dots-pattern.svg rename to src/sections/Kanvas/Kanvas-design/images/background-dots-pattern.svg diff --git a/src/sections/Meshmap/Meshmap-design/images/banner-image-colorMode.svg b/src/sections/Kanvas/Kanvas-design/images/banner-image-colorMode.svg similarity index 100% rename from src/sections/Meshmap/Meshmap-design/images/banner-image-colorMode.svg rename to src/sections/Kanvas/Kanvas-design/images/banner-image-colorMode.svg diff --git a/src/sections/Meshmap/Meshmap-design/images/banner-image-dark.svg b/src/sections/Kanvas/Kanvas-design/images/banner-image-dark.svg similarity index 100% rename from src/sections/Meshmap/Meshmap-design/images/banner-image-dark.svg rename to src/sections/Kanvas/Kanvas-design/images/banner-image-dark.svg diff --git a/src/sections/Meshmap/Meshmap-design/images/banner-image-light.svg b/src/sections/Kanvas/Kanvas-design/images/banner-image-light.svg similarity index 100% rename from src/sections/Meshmap/Meshmap-design/images/banner-image-light.svg rename to src/sections/Kanvas/Kanvas-design/images/banner-image-light.svg diff --git a/src/sections/Meshmap/Meshmap-design/images/connect-components.gif b/src/sections/Kanvas/Kanvas-design/images/connect-components.gif similarity index 100% rename from src/sections/Meshmap/Meshmap-design/images/connect-components.gif rename to src/sections/Kanvas/Kanvas-design/images/connect-components.gif diff --git a/src/sections/Meshmap/Meshmap-design/images/cytoNodes.js b/src/sections/Kanvas/Kanvas-design/images/cytoNodes.js similarity index 100% rename from src/sections/Meshmap/Meshmap-design/images/cytoNodes.js rename to src/sections/Kanvas/Kanvas-design/images/cytoNodes.js diff --git a/src/sections/Meshmap/Meshmap-design/images/cytoscape-colorMode.svg b/src/sections/Kanvas/Kanvas-design/images/cytoscape-colorMode.svg similarity index 100% rename from src/sections/Meshmap/Meshmap-design/images/cytoscape-colorMode.svg rename to src/sections/Kanvas/Kanvas-design/images/cytoscape-colorMode.svg diff --git a/src/sections/Meshmap/Meshmap-design/images/cytoscape-dark.svg b/src/sections/Kanvas/Kanvas-design/images/cytoscape-dark.svg similarity index 100% rename from src/sections/Meshmap/Meshmap-design/images/cytoscape-dark.svg rename to src/sections/Kanvas/Kanvas-design/images/cytoscape-dark.svg diff --git a/src/sections/Meshmap/Meshmap-design/images/cytoscape-light.svg b/src/sections/Kanvas/Kanvas-design/images/cytoscape-light.svg similarity index 100% rename from src/sections/Meshmap/Meshmap-design/images/cytoscape-light.svg rename to src/sections/Kanvas/Kanvas-design/images/cytoscape-light.svg diff --git a/src/sections/Meshmap/Meshmap-design/images/drag-drop-components.gif b/src/sections/Kanvas/Kanvas-design/images/drag-drop-components.gif similarity index 100% rename from src/sections/Meshmap/Meshmap-design/images/drag-drop-components.gif rename to src/sections/Kanvas/Kanvas-design/images/drag-drop-components.gif diff --git a/src/sections/Meshmap/Meshmap-design/images/integration-image-colorMode.svg b/src/sections/Kanvas/Kanvas-design/images/integration-image-colorMode.svg similarity index 100% rename from src/sections/Meshmap/Meshmap-design/images/integration-image-colorMode.svg rename to src/sections/Kanvas/Kanvas-design/images/integration-image-colorMode.svg diff --git a/src/sections/Meshmap/Meshmap-design/images/meshmap-bottom-image-dark.svg b/src/sections/Kanvas/Kanvas-design/images/kanvas-bottom-image-dark.svg similarity index 100% rename from src/sections/Meshmap/Meshmap-design/images/meshmap-bottom-image-dark.svg rename to src/sections/Kanvas/Kanvas-design/images/kanvas-bottom-image-dark.svg diff --git a/src/sections/Meshmap/Meshmap-design/images/meshmap-bottom-image-light.svg b/src/sections/Kanvas/Kanvas-design/images/kanvas-bottom-image-light.svg similarity index 100% rename from src/sections/Meshmap/Meshmap-design/images/meshmap-bottom-image-light.svg rename to src/sections/Kanvas/Kanvas-design/images/kanvas-bottom-image-light.svg diff --git a/src/sections/Meshmap/Meshmap-design/images/meshmap-locator-dark.svg b/src/sections/Kanvas/Kanvas-design/images/kanvas-locator-dark.svg similarity index 100% rename from src/sections/Meshmap/Meshmap-design/images/meshmap-locator-dark.svg rename to src/sections/Kanvas/Kanvas-design/images/kanvas-locator-dark.svg diff --git a/src/sections/Meshmap/Meshmap-design/images/meshmap-locator-light.svg b/src/sections/Kanvas/Kanvas-design/images/kanvas-locator-light.svg similarity index 100% rename from src/sections/Meshmap/Meshmap-design/images/meshmap-locator-light.svg rename to src/sections/Kanvas/Kanvas-design/images/kanvas-locator-light.svg diff --git a/src/sections/Meshmap/Meshmap-design/images/merge-design.gif b/src/sections/Kanvas/Kanvas-design/images/merge-design.gif similarity index 100% rename from src/sections/Meshmap/Meshmap-design/images/merge-design.gif rename to src/sections/Kanvas/Kanvas-design/images/merge-design.gif diff --git a/src/sections/Meshmap/Meshmap-design/images/plus-sign-colorMode.svg b/src/sections/Kanvas/Kanvas-design/images/plus-sign-colorMode.svg similarity index 100% rename from src/sections/Meshmap/Meshmap-design/images/plus-sign-colorMode.svg rename to src/sections/Kanvas/Kanvas-design/images/plus-sign-colorMode.svg diff --git a/src/sections/Meshmap/Meshmap-design/images/share-design.gif b/src/sections/Kanvas/Kanvas-design/images/share-design.gif similarity index 100% rename from src/sections/Meshmap/Meshmap-design/images/share-design.gif rename to src/sections/Kanvas/Kanvas-design/images/share-design.gif diff --git a/src/sections/Meshmap/Meshmap-design/images/underline.svg b/src/sections/Kanvas/Kanvas-design/images/underline.svg similarity index 100% rename from src/sections/Meshmap/Meshmap-design/images/underline.svg rename to src/sections/Kanvas/Kanvas-design/images/underline.svg diff --git a/src/sections/Kanvas/Kanvas-design/index.js b/src/sections/Kanvas/Kanvas-design/index.js new file mode 100644 index 000000000000..f931646468c1 --- /dev/null +++ b/src/sections/Kanvas/Kanvas-design/index.js @@ -0,0 +1,28 @@ +import React from "react"; +import KanvasDesignWrapper from "./kanvas-design.style"; +import KanvasDesignBanner from "./kanvas-design-banner"; +import KanvasHeroSection from "./kanvas-design-hero"; +import KanvasIntegrationsSection from "./kanvas-design-integrations"; +import { KanvasMobileSwiper } from "./Kanvas_Mobile_swiper/KanvasMobileSwiper"; +import KanvasDesignFeatureCarousel from "./kanvas-design-features-carousel"; + +import SignupForm from "../signup-form"; +import Reviews from "../../Pricing/review-slider"; + + +const KanvasDesign = () => { + return ( + + + + {/* */} + + + + + + + ); +}; + +export default KanvasDesign; diff --git a/src/sections/Meshmap/Meshmap-design/index.test.js b/src/sections/Kanvas/Kanvas-design/index.test.js similarity index 68% rename from src/sections/Meshmap/Meshmap-design/index.test.js rename to src/sections/Kanvas/Kanvas-design/index.test.js index 293b1fc35124..8e8fd5cbb5ab 100644 --- a/src/sections/Meshmap/Meshmap-design/index.test.js +++ b/src/sections/Kanvas/Kanvas-design/index.test.js @@ -1,7 +1,7 @@ import React from 'react'; import { shallow } from 'enzyme'; -import Meshmap from './index'; +import Kanvas from './index'; it('Blog-sidebar renders without crashing', () => { - shallow(); + shallow(); }); \ No newline at end of file diff --git a/src/sections/Meshmap/Meshmap-design/meshmap-design-banner.js b/src/sections/Kanvas/Kanvas-design/kanvas-design-banner.js similarity index 98% rename from src/sections/Meshmap/Meshmap-design/meshmap-design-banner.js rename to src/sections/Kanvas/Kanvas-design/kanvas-design-banner.js index 57d872e593e1..7443669a818b 100644 --- a/src/sections/Meshmap/Meshmap-design/meshmap-design-banner.js +++ b/src/sections/Kanvas/Kanvas-design/kanvas-design-banner.js @@ -151,13 +151,13 @@ const DesignBannerWrapper = styled.div` } `; -const MeshmapDesignBanner = () => { +const KanvasDesignBanner = () => { return ( {/* */}
    -

    MeshMap

    +

    Kanvas

    Designer

    Drag-and-drop your cloud native infrastructure using a palette of thousands of versioned Kubernetes components. Using GitOps? Integrate visual reviews into your pipeline.

    @@ -173,4 +173,4 @@ const MeshmapDesignBanner = () => { ); }; -export default MeshmapDesignBanner; \ No newline at end of file +export default KanvasDesignBanner; \ No newline at end of file diff --git a/src/sections/Meshmap/Meshmap-design/meshmap-design-features-carousel.js b/src/sections/Kanvas/Kanvas-design/kanvas-design-features-carousel.js similarity index 90% rename from src/sections/Meshmap/Meshmap-design/meshmap-design-features-carousel.js rename to src/sections/Kanvas/Kanvas-design/kanvas-design-features-carousel.js index c075bf55952a..46c0b65e989c 100644 --- a/src/sections/Meshmap/Meshmap-design/meshmap-design-features-carousel.js +++ b/src/sections/Kanvas/Kanvas-design/kanvas-design-features-carousel.js @@ -12,13 +12,13 @@ const CONTENT = [ title: "Confidently make changes to your infrastructure", img: dragDrop, description: - "MeshMap automatically catalogs and provides insight into all of your services, datastores and the connections between them, allowing teams to deeply understand application architecture.", + "Kanvas automatically catalogs and provides insight into all of your services, datastores and the connections between them, allowing teams to deeply understand application architecture.", }, { title: "Visualize and automate infrastructure understanding", img: mergeDesign, description: - "MeshMap helps automate infrastructure understanding from the architecture to a single PR so your team can ship, refactor and onboard to legacy or existing applications faster.", + "Kanvaselps automate infrastructure understanding from the architecture to a single PR so your team can ship, refactor and onboard to legacy or existing applications faster.", }, { title: "Make working across services as easy as working across files", @@ -116,7 +116,7 @@ const DivWrapper = styled.div` } `; -export default function MeshmapDesignFeatureCarousel() { +export default function KanvasDesignFeatureCarousel() { const [cardIndices, setCardIndices] = useState([ ...Array(CONTENT.length).keys(), ]); diff --git a/src/sections/Meshmap/Meshmap-design/meshmap-design-hero.js b/src/sections/Kanvas/Kanvas-design/kanvas-design-hero.js similarity index 75% rename from src/sections/Meshmap/Meshmap-design/meshmap-design-hero.js rename to src/sections/Kanvas/Kanvas-design/kanvas-design-hero.js index e1f079bd3b08..0fbdacf50a9c 100644 --- a/src/sections/Meshmap/Meshmap-design/meshmap-design-hero.js +++ b/src/sections/Kanvas/Kanvas-design/kanvas-design-hero.js @@ -1,9 +1,9 @@ import React from "react"; import styled from "styled-components"; -import MeshmapLocatorLight from "./images/meshmap-locator-light.svg"; -import MeshmapLocatorDark from "./images/meshmap-locator-dark.svg"; -import MeshmapImageBottomLight from "./images/meshmap-bottom-image-light.svg"; -import MeshmapImageBottomDark from "./images/meshmap-bottom-image-dark.svg"; +import KanvasLocatorLight from "./images/kanvas-locator-light.svg"; +import KanvasLocatorDark from "./images/kanvas-locator-dark.svg"; +import KanvasImageBottomLight from "./images/kanvas-bottom-image-light.svg"; +import KanvasImageBottomDark from "./images/kanvas-bottom-image-dark.svg"; import { useInView } from "react-intersection-observer"; import { useState } from "react"; import { useStyledDarkMode } from "../../../theme/app/useStyledDarkMode"; @@ -75,7 +75,7 @@ const HeroSectionWrapper = styled.div` `; -const MeshmapHeroSection = () => { +const KanvasHeroSection = () => { const [locatorRef, inView] = useInView({ threshold: 0.8 }); const [imageInView, setimageInView] = useState(false); if (inView && !imageInView) @@ -89,15 +89,15 @@ const MeshmapHeroSection = () => {

    Design your infrastructure

    -

    MeshMap is the world’s only visual designer for Kubernetes and cloud native applications. Design, deploy, and manage your Kubernetes-based, cloud native deployments allowing you to speed up infrastructure configuration.

    +

    Kanvasis the world’s only visual designer for Kubernetes and cloud native applications. Design, deploy, and manage your Kubernetes-based, cloud native deployments allowing you to speed up infrastructure configuration.

    - locator - integrations + locator + integrations
    ); }; -export default MeshmapHeroSection; \ No newline at end of file +export default KanvasHeroSection; \ No newline at end of file diff --git a/src/sections/Meshmap/Meshmap-design/meshmap-design-integrations.js b/src/sections/Kanvas/Kanvas-design/kanvas-design-integrations.js similarity index 97% rename from src/sections/Meshmap/Meshmap-design/meshmap-design-integrations.js rename to src/sections/Kanvas/Kanvas-design/kanvas-design-integrations.js index 9048f5507915..197e1fd1a9c6 100644 --- a/src/sections/Meshmap/Meshmap-design/meshmap-design-integrations.js +++ b/src/sections/Kanvas/Kanvas-design/kanvas-design-integrations.js @@ -90,7 +90,7 @@ const IntegrationsSectionWrapper = styled.div` } `; -const MeshmapIntegrationsSection = () => { +const KanvasIntegrationsSection = () => { const [diagramRef, inView] = useInView({ threshold: 0.6 }); const [imageInView, setimageInView] = useState(false); @@ -155,4 +155,4 @@ const MeshmapIntegrationsSection = () => { ); }; -export default MeshmapIntegrationsSection; +export default KanvasIntegrationsSection; diff --git a/src/sections/Meshmap/Meshmap-design/meshmap-design.style.js b/src/sections/Kanvas/Kanvas-design/kanvas-design.style.js similarity index 89% rename from src/sections/Meshmap/Meshmap-design/meshmap-design.style.js rename to src/sections/Kanvas/Kanvas-design/kanvas-design.style.js index 5f869dbdb671..ff7fefc21362 100644 --- a/src/sections/Meshmap/Meshmap-design/meshmap-design.style.js +++ b/src/sections/Kanvas/Kanvas-design/kanvas-design.style.js @@ -1,6 +1,6 @@ import styled from "styled-components"; -const MeshmapDesignWrapper = styled.div` +const KanvasDesignWrapper = styled.div` display: flex; flex-direction: column; @@ -39,4 +39,4 @@ const MeshmapDesignWrapper = styled.div` `; -export default MeshmapDesignWrapper; +export default KanvasDesignWrapper; diff --git a/src/sections/Meshmap/Meshmap-visualize/images/application-import-arrows.svg b/src/sections/Kanvas/Kanvas-visualize/images/application-import-arrows.svg similarity index 100% rename from src/sections/Meshmap/Meshmap-visualize/images/application-import-arrows.svg rename to src/sections/Kanvas/Kanvas-visualize/images/application-import-arrows.svg diff --git a/src/sections/Meshmap/Meshmap-visualize/images/application-import-boxes.svg b/src/sections/Kanvas/Kanvas-visualize/images/application-import-boxes.svg similarity index 100% rename from src/sections/Meshmap/Meshmap-visualize/images/application-import-boxes.svg rename to src/sections/Kanvas/Kanvas-visualize/images/application-import-boxes.svg diff --git a/src/sections/Meshmap/Meshmap-visualize/images/interactive-terminal-code.svg b/src/sections/Kanvas/Kanvas-visualize/images/interactive-terminal-code.svg similarity index 100% rename from src/sections/Meshmap/Meshmap-visualize/images/interactive-terminal-code.svg rename to src/sections/Kanvas/Kanvas-visualize/images/interactive-terminal-code.svg diff --git a/src/sections/Meshmap/Meshmap-visualize/images/interactive-terminal.svg b/src/sections/Kanvas/Kanvas-visualize/images/interactive-terminal.svg similarity index 100% rename from src/sections/Meshmap/Meshmap-visualize/images/interactive-terminal.svg rename to src/sections/Kanvas/Kanvas-visualize/images/interactive-terminal.svg diff --git a/src/sections/Meshmap/Meshmap-visualize/images/log-stream-search.svg b/src/sections/Kanvas/Kanvas-visualize/images/log-stream-search.svg similarity index 100% rename from src/sections/Meshmap/Meshmap-visualize/images/log-stream-search.svg rename to src/sections/Kanvas/Kanvas-visualize/images/log-stream-search.svg diff --git a/src/sections/Meshmap/Meshmap-visualize/images/log-stream.svg b/src/sections/Kanvas/Kanvas-visualize/images/log-stream.svg similarity index 100% rename from src/sections/Meshmap/Meshmap-visualize/images/log-stream.svg rename to src/sections/Kanvas/Kanvas-visualize/images/log-stream.svg diff --git a/src/sections/Meshmap/Meshmap-visualize/images/oval-blur-shape.svg b/src/sections/Kanvas/Kanvas-visualize/images/oval-blur-shape.svg similarity index 100% rename from src/sections/Meshmap/Meshmap-visualize/images/oval-blur-shape.svg rename to src/sections/Kanvas/Kanvas-visualize/images/oval-blur-shape.svg diff --git a/src/sections/Meshmap/Meshmap-visualize/images/performance-metrics-bars.svg b/src/sections/Kanvas/Kanvas-visualize/images/performance-metrics-bars.svg similarity index 100% rename from src/sections/Meshmap/Meshmap-visualize/images/performance-metrics-bars.svg rename to src/sections/Kanvas/Kanvas-visualize/images/performance-metrics-bars.svg diff --git a/src/sections/Meshmap/Meshmap-visualize/images/performance-metrics-graph.svg b/src/sections/Kanvas/Kanvas-visualize/images/performance-metrics-graph.svg similarity index 100% rename from src/sections/Meshmap/Meshmap-visualize/images/performance-metrics-graph.svg rename to src/sections/Kanvas/Kanvas-visualize/images/performance-metrics-graph.svg diff --git a/src/sections/Meshmap/Meshmap-visualize/images/service-performance-gear-dark.svg b/src/sections/Kanvas/Kanvas-visualize/images/service-performance-gear-dark.svg similarity index 100% rename from src/sections/Meshmap/Meshmap-visualize/images/service-performance-gear-dark.svg rename to src/sections/Kanvas/Kanvas-visualize/images/service-performance-gear-dark.svg diff --git a/src/sections/Meshmap/Meshmap-visualize/images/service-performance-gear-light.svg b/src/sections/Kanvas/Kanvas-visualize/images/service-performance-gear-light.svg similarity index 100% rename from src/sections/Meshmap/Meshmap-visualize/images/service-performance-gear-light.svg rename to src/sections/Kanvas/Kanvas-visualize/images/service-performance-gear-light.svg diff --git a/src/sections/Meshmap/Meshmap-visualize/images/service-performance-meter-colorMode.svg b/src/sections/Kanvas/Kanvas-visualize/images/service-performance-meter-colorMode.svg similarity index 100% rename from src/sections/Meshmap/Meshmap-visualize/images/service-performance-meter-colorMode.svg rename to src/sections/Kanvas/Kanvas-visualize/images/service-performance-meter-colorMode.svg diff --git a/src/sections/Meshmap/Meshmap-visualize/images/service-performance-meter-dark.svg b/src/sections/Kanvas/Kanvas-visualize/images/service-performance-meter-dark.svg similarity index 100% rename from src/sections/Meshmap/Meshmap-visualize/images/service-performance-meter-dark.svg rename to src/sections/Kanvas/Kanvas-visualize/images/service-performance-meter-dark.svg diff --git a/src/sections/Meshmap/Meshmap-visualize/images/service-performance-meter-light.svg b/src/sections/Kanvas/Kanvas-visualize/images/service-performance-meter-light.svg similarity index 100% rename from src/sections/Meshmap/Meshmap-visualize/images/service-performance-meter-light.svg rename to src/sections/Kanvas/Kanvas-visualize/images/service-performance-meter-light.svg diff --git a/src/sections/Meshmap/Meshmap-visualize/images/timeline-dvr-clock.svg b/src/sections/Kanvas/Kanvas-visualize/images/timeline-dvr-clock.svg similarity index 100% rename from src/sections/Meshmap/Meshmap-visualize/images/timeline-dvr-clock.svg rename to src/sections/Kanvas/Kanvas-visualize/images/timeline-dvr-clock.svg diff --git a/src/sections/Meshmap/Meshmap-visualize/images/timeline-dvr.svg b/src/sections/Kanvas/Kanvas-visualize/images/timeline-dvr.svg similarity index 100% rename from src/sections/Meshmap/Meshmap-visualize/images/timeline-dvr.svg rename to src/sections/Kanvas/Kanvas-visualize/images/timeline-dvr.svg diff --git a/src/sections/Meshmap/Meshmap-visualize/images/visualizer-views-colorMode.svg b/src/sections/Kanvas/Kanvas-visualize/images/visualizer-views-colorMode.svg similarity index 100% rename from src/sections/Meshmap/Meshmap-visualize/images/visualizer-views-colorMode.svg rename to src/sections/Kanvas/Kanvas-visualize/images/visualizer-views-colorMode.svg diff --git a/src/sections/Meshmap/Meshmap-visualize/images/visualizer-views-dark.svg b/src/sections/Kanvas/Kanvas-visualize/images/visualizer-views-dark.svg similarity index 100% rename from src/sections/Meshmap/Meshmap-visualize/images/visualizer-views-dark.svg rename to src/sections/Kanvas/Kanvas-visualize/images/visualizer-views-dark.svg diff --git a/src/sections/Meshmap/Meshmap-visualize/images/visualizer-views-light.svg b/src/sections/Kanvas/Kanvas-visualize/images/visualizer-views-light.svg similarity index 100% rename from src/sections/Meshmap/Meshmap-visualize/images/visualizer-views-light.svg rename to src/sections/Kanvas/Kanvas-visualize/images/visualizer-views-light.svg diff --git a/src/sections/Meshmap/Meshmap-visualize/images/visualizer-views-lines.svg b/src/sections/Kanvas/Kanvas-visualize/images/visualizer-views-lines.svg similarity index 100% rename from src/sections/Meshmap/Meshmap-visualize/images/visualizer-views-lines.svg rename to src/sections/Kanvas/Kanvas-visualize/images/visualizer-views-lines.svg diff --git a/src/sections/Kanvas/Kanvas-visualize/index.js b/src/sections/Kanvas/Kanvas-visualize/index.js new file mode 100644 index 000000000000..ba6558c8bef6 --- /dev/null +++ b/src/sections/Kanvas/Kanvas-visualize/index.js @@ -0,0 +1,29 @@ +import React from "react"; +import KanvasVisualizeWrapper from "./kanvas-visualize.style"; +import KanvasVisualizeBanner from "./kanvas-visualize-banner"; +import KanvasVisualizerFeatures from "./kanvas-visualize-features"; +import KanvasVisualizerViews from "./kanvas-visualize-views"; +import BackgroundImage from "./images/oval-blur-shape.svg"; +import SignupForm from "../signup-form"; +import Reviews from "../../Pricing/review-slider"; +import { useRef } from "react"; + +const KanvasVisualize = () => { + const targetRef = useRef(null); + return ( + +
    + +
    + + + + {/* */} + {/* */} + + +
    + ); +}; + +export default KanvasVisualize; diff --git a/src/sections/Meshmap/Meshmap-visualize/index.test.js b/src/sections/Kanvas/Kanvas-visualize/index.test.js similarity index 68% rename from src/sections/Meshmap/Meshmap-visualize/index.test.js rename to src/sections/Kanvas/Kanvas-visualize/index.test.js index 293b1fc35124..8e8fd5cbb5ab 100644 --- a/src/sections/Meshmap/Meshmap-visualize/index.test.js +++ b/src/sections/Kanvas/Kanvas-visualize/index.test.js @@ -1,7 +1,7 @@ import React from 'react'; import { shallow } from 'enzyme'; -import Meshmap from './index'; +import Kanvas from './index'; it('Blog-sidebar renders without crashing', () => { - shallow(); + shallow(); }); \ No newline at end of file diff --git a/src/sections/Meshmap/Meshmap-visualize/meshmap-visualize-banner.js b/src/sections/Kanvas/Kanvas-visualize/kanvas-visualize-banner.js similarity index 94% rename from src/sections/Meshmap/Meshmap-visualize/meshmap-visualize-banner.js rename to src/sections/Kanvas/Kanvas-visualize/kanvas-visualize-banner.js index f74f079ebc6e..76501fcec653 100644 --- a/src/sections/Meshmap/Meshmap-visualize/meshmap-visualize-banner.js +++ b/src/sections/Kanvas/Kanvas-visualize/kanvas-visualize-banner.js @@ -83,7 +83,7 @@ const VisualizeBannerWrapper = styled.div` } `; -const MeshmapVisualizeBanner = ({ targetRef }) => { +const KanvasisualizeBanner = ({ targetRef }) => { const handleClick = () => { const offset = 100; const targetPos = targetRef.current.getBoundingClientRect().top + window.pageYOffset; @@ -99,7 +99,7 @@ const MeshmapVisualizeBanner = ({ targetRef }) => {

    Visualize your infrastructure

    See your designs in action. Operate with best practices.

    -
    {/*
    @@ -109,4 +109,4 @@ const MeshmapVisualizeBanner = ({ targetRef }) => { ); }; -export default MeshmapVisualizeBanner; \ No newline at end of file +export default KanvasisualizeBanner; \ No newline at end of file diff --git a/src/sections/Meshmap/Meshmap-visualize/meshmap-visualize-features.js b/src/sections/Kanvas/Kanvas-visualize/kanvas-visualize-features.js similarity index 99% rename from src/sections/Meshmap/Meshmap-visualize/meshmap-visualize-features.js rename to src/sections/Kanvas/Kanvas-visualize/kanvas-visualize-features.js index 246c194eeb16..300ac8ab6618 100644 --- a/src/sections/Meshmap/Meshmap-visualize/meshmap-visualize-features.js +++ b/src/sections/Kanvas/Kanvas-visualize/kanvas-visualize-features.js @@ -122,7 +122,7 @@ z-index: 10; } `; -const MeshmapVisualizerFeatures = () => { +const KanvasisualizerFeatures = () => { const [isHovered, setisHovered] = useState(false); const [hoveredFeature, sethoveredFeature] = useState(""); @@ -211,4 +211,4 @@ const MeshmapVisualizerFeatures = () => { ); }; -export default MeshmapVisualizerFeatures; \ No newline at end of file +export default KanvasisualizerFeatures; \ No newline at end of file diff --git a/src/sections/Meshmap/Meshmap-visualize/meshmap-visualize-views.js b/src/sections/Kanvas/Kanvas-visualize/kanvas-visualize-views.js similarity index 97% rename from src/sections/Meshmap/Meshmap-visualize/meshmap-visualize-views.js rename to src/sections/Kanvas/Kanvas-visualize/kanvas-visualize-views.js index 0c0671f7f8e1..f9d52995298e 100644 --- a/src/sections/Meshmap/Meshmap-visualize/meshmap-visualize-views.js +++ b/src/sections/Kanvas/Kanvas-visualize/kanvas-visualize-views.js @@ -112,7 +112,7 @@ const ViewsSectionWrapper = styled.div` `; -const MeshmapVisualizerViews = () => { +const KanvasVisualizerViews = () => { const [imageRef, inView] = useInView({ threshold: 0.4 }); const [imageInView, setimageInView] = useState(false); @@ -138,4 +138,4 @@ const MeshmapVisualizerViews = () => { ); }; -export default MeshmapVisualizerViews; \ No newline at end of file +export default KanvasVisualizerViews; \ No newline at end of file diff --git a/src/sections/Meshmap/Meshmap-visualize/meshmap-visualize.style.js b/src/sections/Kanvas/Kanvas-visualize/kanvas-visualize.style.js similarity index 90% rename from src/sections/Meshmap/Meshmap-visualize/meshmap-visualize.style.js rename to src/sections/Kanvas/Kanvas-visualize/kanvas-visualize.style.js index f755d0088693..86a4b7a5830f 100644 --- a/src/sections/Meshmap/Meshmap-visualize/meshmap-visualize.style.js +++ b/src/sections/Kanvas/Kanvas-visualize/kanvas-visualize.style.js @@ -1,6 +1,6 @@ import styled from "styled-components"; -const MeshmapVisualizeWrapper = styled.div` +const KanvasVisualizeWrapper = styled.div` display: flex; flex-direction: column; @@ -47,4 +47,4 @@ const MeshmapVisualizeWrapper = styled.div` `; -export default MeshmapVisualizeWrapper; +export default KanvasVisualizeWrapper; diff --git a/src/sections/Meshmap/diagram/diagram.style.js b/src/sections/Kanvas/diagram/diagram.style.js similarity index 100% rename from src/sections/Meshmap/diagram/diagram.style.js rename to src/sections/Kanvas/diagram/diagram.style.js diff --git a/src/sections/Meshmap/features/features.style.js b/src/sections/Kanvas/features/features.style.js similarity index 100% rename from src/sections/Meshmap/features/features.style.js rename to src/sections/Kanvas/features/features.style.js diff --git a/src/sections/Meshmap/features/index.js b/src/sections/Kanvas/features/index.js similarity index 100% rename from src/sections/Meshmap/features/index.js rename to src/sections/Kanvas/features/index.js diff --git a/src/sections/Meshmap/images/MesheryCloud.svg b/src/sections/Kanvas/images/MesheryCloud.svg similarity index 100% rename from src/sections/Meshmap/images/MesheryCloud.svg rename to src/sections/Kanvas/images/MesheryCloud.svg diff --git a/src/sections/Meshmap/images/circles.svg b/src/sections/Kanvas/images/circles.svg similarity index 100% rename from src/sections/Meshmap/images/circles.svg rename to src/sections/Kanvas/images/circles.svg diff --git a/src/sections/Meshmap/images/collaborate1.svg b/src/sections/Kanvas/images/collaborate1.svg similarity index 100% rename from src/sections/Meshmap/images/collaborate1.svg rename to src/sections/Kanvas/images/collaborate1.svg diff --git a/src/sections/Meshmap/images/collaborate2.svg b/src/sections/Kanvas/images/collaborate2.svg similarity index 100% rename from src/sections/Meshmap/images/collaborate2.svg rename to src/sections/Kanvas/images/collaborate2.svg diff --git a/src/sections/Meshmap/images/datacenter-crash.svg b/src/sections/Kanvas/images/datacenter-crash.svg similarity index 100% rename from src/sections/Meshmap/images/datacenter-crash.svg rename to src/sections/Kanvas/images/datacenter-crash.svg diff --git a/src/sections/Meshmap/images/grid.svg b/src/sections/Kanvas/images/grid.svg similarity index 100% rename from src/sections/Meshmap/images/grid.svg rename to src/sections/Kanvas/images/grid.svg diff --git a/src/sections/Meshmap/images/link-arrow-dark.svg b/src/sections/Kanvas/images/link-arrow-dark.svg similarity index 100% rename from src/sections/Meshmap/images/link-arrow-dark.svg rename to src/sections/Kanvas/images/link-arrow-dark.svg diff --git a/src/sections/Meshmap/images/link-arrow.svg b/src/sections/Kanvas/images/link-arrow.svg similarity index 100% rename from src/sections/Meshmap/images/link-arrow.svg rename to src/sections/Kanvas/images/link-arrow.svg diff --git a/src/sections/Meshmap/images/meshery-cloud.svg b/src/sections/Kanvas/images/meshery-cloud.svg similarity index 100% rename from src/sections/Meshmap/images/meshery-cloud.svg rename to src/sections/Kanvas/images/meshery-cloud.svg diff --git a/src/sections/Meshmap/images/meshmap-draft-logos.webp b/src/sections/Kanvas/images/meshmap-draft-logos.webp similarity index 100% rename from src/sections/Meshmap/images/meshmap-draft-logos.webp rename to src/sections/Kanvas/images/meshmap-draft-logos.webp diff --git a/src/sections/Meshmap/index.js b/src/sections/Kanvas/index.js similarity index 89% rename from src/sections/Meshmap/index.js rename to src/sections/Kanvas/index.js index 60b3e1219f9f..b7e02adc60c6 100644 --- a/src/sections/Meshmap/index.js +++ b/src/sections/Kanvas/index.js @@ -1,13 +1,13 @@ import React from "react"; -import MeshmapWrapper from "./meshmap.style"; +import KanvasWrapper from "./kanvas.style"; import { Container } from "../../reusecore/Layout"; import Features from "../../components/Features-carousel"; -import MeshmapModes from "./meshmap-modes"; -import Catalog from "./meshmap-catalog"; -import Platform from "./meshmap-platform"; -import MeshmapBanner from "./meshmap_banner"; -import designerImage from "../../assets/images/meshmap/MeshmapDesigner.webp"; -import visualizerImage from "../../assets/images/meshmap/MeshmapVisualizer.webp"; +import KanvasModes from "./kanvas-modes"; +import Catalog from "./kanvas-catalog"; +import Platform from "./kanvas-platform"; +import KanvasBanner from "./kanvas_banner"; +import designerImage from "../../assets/images/kanvas/KanvasDesigner.webp"; +import visualizerImage from "../../assets/images/kanvas/KanvasVisualizer.webp"; import DesignerFeatures from "./FeaturesSection/Design/DesignerFeatures"; import CollaboratorFeatures from "./FeaturesSection/Collaborate/CollaboratorFeatures"; import VisualizerFeatures from "./FeaturesSection/Visualize/VisualizerFeatures"; @@ -37,16 +37,16 @@ import Alex from "../../sections/Pricing/reviews/alex-hokanson.jpeg"; import TeaserModal from "../../components/TeaserModal"; -const Meshmap = (props) => { +const Kanvas = (props) => { return ( - +
    - +
    { ]} />
    - + { { }, ]} /> @@ -155,7 +155,7 @@ const Meshmap = (props) => { }, // { // title: "Nothing great is made alone.", - // description: "MeshMap connects everyone in the DevOps process so teams can deliver better products, faster." + // description: "Kanvas connects everyone in the DevOps process so teams can deliver better products, faster." // }, { title: "Create. Iterate. Repeat.", @@ -183,7 +183,7 @@ const Meshmap = (props) => { // }, { title: "Inclusive collaboration from start to finish", - description: "MeshMap is an end-to-end management platform, here to help teams understand problems, explore options, and build solutions—together.", + description: "Kanvas is an end-to-end management platform, here to help teams understand problems, explore options, and build solutions—together.", imgContent: ( <> avatar-3 @@ -233,13 +233,13 @@ const Meshmap = (props) => { }, ]} />*/} @@ -250,10 +250,10 @@ const Meshmap = (props) => {
    <> - + -
    + ); }; -export default Meshmap; \ No newline at end of file +export default Kanvas; \ No newline at end of file diff --git a/src/sections/Meshmap/index.test.js b/src/sections/Kanvas/index.test.js similarity index 68% rename from src/sections/Meshmap/index.test.js rename to src/sections/Kanvas/index.test.js index 293b1fc35124..8e8fd5cbb5ab 100644 --- a/src/sections/Meshmap/index.test.js +++ b/src/sections/Kanvas/index.test.js @@ -1,7 +1,7 @@ import React from 'react'; import { shallow } from 'enzyme'; -import Meshmap from './index'; +import Kanvas from './index'; it('Blog-sidebar renders without crashing', () => { - shallow(); + shallow(); }); \ No newline at end of file diff --git a/src/sections/Meshmap/meshmap-catalog.js b/src/sections/Kanvas/kanvas-catalog.js similarity index 86% rename from src/sections/Meshmap/meshmap-catalog.js rename to src/sections/Kanvas/kanvas-catalog.js index dbc17ec04a6a..638050f39b69 100644 --- a/src/sections/Meshmap/meshmap-catalog.js +++ b/src/sections/Kanvas/kanvas-catalog.js @@ -1,25 +1,25 @@ import React from "react"; import styled from "styled-components"; -import Mutual_tls from "../../assets/images/meshmap/catalog-card-images/mutual-tls.svg"; -import Retries from "../../assets/images/meshmap/catalog-card-images/retries.svg"; -import Traces from "../../assets/images/meshmap/catalog-card-images/traces.svg"; -import Denial from "../../assets/images/meshmap/catalog-card-images/denial.svg"; -import Correlate_event from "../../assets/images/meshmap/catalog-card-images/correlate-event.svg"; -import Only_wagent from "../../assets/images/meshmap/catalog-card-images/only-wagent.svg"; -import Node_agent from "../../assets/images/meshmap/catalog-card-images/node-agent.svg"; -import Single_tenant from "../../assets/images/meshmap/catalog-card-images/single-tenant.svg"; -import Pre_provison from "../../assets/images/meshmap/catalog-card-images/pre-provision.svg"; -import Circuit_breaker from "../../assets/images/meshmap/catalog-card-images/circuit-breaker.svg"; -import Retry_deadline from "../../assets/images/meshmap/catalog-card-images/retry-deadline.svg"; -import Singleton from "../../assets/images/meshmap/catalog-card-images/singleton.svg"; -import Jwt_transformer from "../../assets/images/meshmap/catalog-card-images/jwt.svg"; -import Multicluster from "../../assets/images/meshmap/catalog-card-images/multicluster.svg"; -import Http_metrics from "../../assets/images/meshmap/catalog-card-images/http.svg"; +import Mutual_tls from "../../assets/images/kanvas/catalog-card-images/mutual-tls.svg"; +import Retries from "../../assets/images/kanvas/catalog-card-images/retries.svg"; +import Traces from "../../assets/images/kanvas/catalog-card-images/traces.svg"; +import Denial from "../../assets/images/kanvas/catalog-card-images/denial.svg"; +import Correlate_event from "../../assets/images/kanvas/catalog-card-images/correlate-event.svg"; +import Only_wagent from "../../assets/images/kanvas/catalog-card-images/only-wagent.svg"; +import Node_agent from "../../assets/images/kanvas/catalog-card-images/node-agent.svg"; +import Single_tenant from "../../assets/images/kanvas/catalog-card-images/single-tenant.svg"; +import Pre_provison from "../../assets/images/kanvas/catalog-card-images/pre-provision.svg"; +import Circuit_breaker from "../../assets/images/kanvas/catalog-card-images/circuit-breaker.svg"; +import Retry_deadline from "../../assets/images/kanvas/catalog-card-images/retry-deadline.svg"; +import Singleton from "../../assets/images/kanvas/catalog-card-images/singleton.svg"; +import Jwt_transformer from "../../assets/images/kanvas/catalog-card-images/jwt.svg"; +import Multicluster from "../../assets/images/kanvas/catalog-card-images/multicluster.svg"; +import Http_metrics from "../../assets/images/kanvas/catalog-card-images/http.svg"; import Wasm from "../../assets/images/webassembly/webssembly_icon.svg"; import Patterns from "../../assets/images/service-mesh-patterns/service-mesh-pattern.svg"; -import Ebpf from "../../assets/images/meshmap/ebpf.svg"; -import Opa from "../../assets/images/meshmap/opa.svg"; +import Ebpf from "../../assets/images/kanvas/ebpf.svg"; +import Opa from "../../assets/images/kanvas/opa.svg"; import { Container } from "../../reusecore/Layout"; const CatalogWrapper = styled.div` @@ -423,7 +423,7 @@ const Catalog = () => {

    - MeshMap is a sophisticated and delightfully intuitive tool for designing and operating cloud native infrastructure for Kubernetes. Choose freestyle composition of your infrastructure by drawing shapes, lines, text, and icons to represent the components and relationships of your Kubernetes clusters or quickstart by selecting a pattern the catalog of predefined templates. + Kanvass a sophisticated and delightfully intuitive tool for designing and operating cloud native infrastructure for Kubernetes. Choose freestyle composition of your infrastructure by drawing shapes, lines, text, and icons to represent the components and relationships of your Kubernetes clusters or quickstart by selecting a pattern the catalog of predefined templates.

    diff --git a/src/sections/Meshmap/meshmap-icon.svg b/src/sections/Kanvas/kanvas-icon.svg similarity index 100% rename from src/sections/Meshmap/meshmap-icon.svg rename to src/sections/Kanvas/kanvas-icon.svg diff --git a/src/sections/Meshmap/meshmap-modes.js b/src/sections/Kanvas/kanvas-modes.js similarity index 89% rename from src/sections/Meshmap/meshmap-modes.js rename to src/sections/Kanvas/kanvas-modes.js index 247ed3214421..782289fde652 100644 --- a/src/sections/Meshmap/meshmap-modes.js +++ b/src/sections/Kanvas/kanvas-modes.js @@ -1,9 +1,9 @@ import React, { useState } from "react"; import styled from "styled-components"; -import designerImage from "../../assets/images/meshmap/MeshmapDesigner.webp"; -import visualizerImage from "../../assets/images/meshmap/MeshmapVisualizer.webp"; +import designerImage from "../../assets/images/kanvas/KanvasDesigner.webp"; +import visualizerImage from "../../assets/images/kanvas/KanvasVisualizer.webp"; -const MeshmapModesWrapper = styled.div` +const KanvasModesWrapper = styled.div` margin-top: 0.1rem; p.caption { @@ -242,18 +242,18 @@ const MeshmapModesWrapper = styled.div` `; -const MeshmapModes = () => { +const KanvasModes = () => { const [designerEnlarged, setDesignerEnlarged] = useState(false); const [vizEnlarged, setVizEnlarged] = useState(false); return ( - + {/*

    Choose Your Mode

    */} {/*

    */} {/* Discover and Visualize - any and all of your cloud native infra and apps. */} {/* Collaboratively design and manage your Kubernetes clusters, service mesh deployments, and cloud native apps. */} {/*

    */} - {/* MeshMap supports 10+ service meshes. */} + {/* Kanvassupports 10+ service meshes. */}
    @@ -261,7 +261,7 @@ const MeshmapModes = () => {

    Discover and model your cloud native deployments

    - MeshMap Designer setDesignerEnlarged(!designerEnlarged)} className={`designer-img ${designerEnlarged ? "big" : "small"}`} /> + Kanvas Designer setDesignerEnlarged(!designerEnlarged)} className={`designer-img ${designerEnlarged ? "big" : "small"}`} />

    Drag-and-drop your cloud native infrastructure using a palette of thousands of versioned Kubernetes components. Using GitOps? Integrate advanced performance analysis into your pipeline.

    @@ -274,7 +274,7 @@ const MeshmapModes = () => {

    Apply patterns and manage many Kubernetes clusters

    - MeshMap Visualizer setVizEnlarged(!vizEnlarged)} className={vizEnlarged ? "big" : "small"} /> + Kanvas Visualizer setVizEnlarged(!vizEnlarged)} className={vizEnlarged ? "big" : "small"} />

    Deploy designs, apply patterns, manage and operate your deployments in real-time. Bring all your Kubernetes clusters under a common point of management. Interactively connect to terminal sessions or initiate and search log streams from your containers.

    @@ -290,13 +290,13 @@ const MeshmapModes = () => {

    Deploy your cloud native infrastructure

    Catalog -

    Create and share your own Kubernetes deployments and service mesh patterns in MeshMap Designer or import from the catalog.

    +

    Create and share your own Kubernetes deployments and service mesh patterns in KanvasDesigner or import from the catalog.

    */} -
    + ); }; -export default MeshmapModes; +export default KanvasModes; diff --git a/src/sections/Meshmap/meshmap-newicon.svg b/src/sections/Kanvas/kanvas-newicon.svg similarity index 100% rename from src/sections/Meshmap/meshmap-newicon.svg rename to src/sections/Kanvas/kanvas-newicon.svg diff --git a/src/sections/Meshmap/meshmap-platform.js b/src/sections/Kanvas/kanvas-platform.js similarity index 80% rename from src/sections/Meshmap/meshmap-platform.js rename to src/sections/Kanvas/kanvas-platform.js index 29176ff9cfbd..cd9b485c7cbe 100644 --- a/src/sections/Meshmap/meshmap-platform.js +++ b/src/sections/Kanvas/kanvas-platform.js @@ -116,7 +116,7 @@ const Platform = () => {

    Choose Your Deployment Model

    - Get MeshMap where you need it. + Get Kanvas where you need it.

    { { title: "Self-hosted", description: - "Keep your MeshMap designs internal to your workplace. Get remote support from Layer5 when you need it.", + "Keep your Kanvas designs internal to your workplace. Get remote support from Layer5 when you need it.", content: ( MeshMap Self-hosted ), @@ -137,11 +137,11 @@ const Platform = () => { { title: "Cloud", description: - "Connect to Layer5 Cloud and have your MeshMap designs versioned and available for team sharing and real-time collaboration.", + "Connect to Layer5 Cloud and have your Kanvas designs versioned and available for team sharing and real-time collaboration.", content: ( MeshMap Cloud ), @@ -153,16 +153,16 @@ const Platform = () => {

    Self-Hosted

    - MeshMap Self-hosted + Kanvas Self-hosted

    - Keep your MeshMap designs internal to your workplace. Get remote support from Layer5 when you need it. + Keep your Kanvas designs internal to your workplace. Get remote support from Layer5 when you need it.

    Cloud

    - MeshMap Cloud + Kanvas Cloud

    - Connect to Layer5 Cloud and have your MeshMap designs versioned and available for team sharing and real-time collaboration. + Connect to Layer5 Cloud and have your Kanvasdesigns versioned and available for team sharing and real-time collaboration.

    diff --git a/src/sections/Meshmap/meshmap.style.js b/src/sections/Kanvas/kanvas.style.js similarity index 96% rename from src/sections/Meshmap/meshmap.style.js rename to src/sections/Kanvas/kanvas.style.js index 5336e8984f01..15154065a66a 100644 --- a/src/sections/Meshmap/meshmap.style.js +++ b/src/sections/Kanvas/kanvas.style.js @@ -1,6 +1,6 @@ import styled from "styled-components"; -const MeshmapWrapper = styled.div` +const KanvasWrapper = styled.div` display: flex; flex-direction: column; @@ -86,4 +86,4 @@ const MeshmapWrapper = styled.div` `; -export default MeshmapWrapper; +export default KanvasWrapper; diff --git a/src/sections/Meshmap/meshmap_banner.js b/src/sections/Kanvas/kanvas_banner.js similarity index 93% rename from src/sections/Meshmap/meshmap_banner.js rename to src/sections/Kanvas/kanvas_banner.js index 6ad2b8c91bb1..78e3ddbf9041 100644 --- a/src/sections/Meshmap/meshmap_banner.js +++ b/src/sections/Kanvas/kanvas_banner.js @@ -1,6 +1,6 @@ import React from "react"; import styled from "styled-components"; -import MeshmapIcon from "./meshmap-icon.svg"; +import KanvasIcon from "./kanvas-icon.svg"; const BannerSectionWrapper = styled.div` @@ -91,7 +91,7 @@ const BannerSectionWrapper = styled.div` } } - .meshmap-logo { + .kanvas-logo { width: 14rem; overflow: hidden; margin-top: -7rem; @@ -116,7 +116,7 @@ const BannerSectionWrapper = styled.div` } @media screen and (max-width: 1700px) { - .meshmap-logo { + .kanvas-logo { width: 12rem; /* right: 12rem; */ /* margin-top: -5rem; */ @@ -126,7 +126,7 @@ const BannerSectionWrapper = styled.div` } } @media screen and (max-width: 1200px) { - .meshmap-logo { + .kanvas-logo { left: 20%; width: 10rem; /* right: 8rem; */ @@ -135,7 +135,7 @@ const BannerSectionWrapper = styled.div` /* border-radius: 0% 85% 0% 0% / 0% 60% 0% 0% ; */ } @media screen and (max-width: 992px) { - .meshmap-logo { + .kanvas-logo { width: 8rem; margin-top: -2rem; left: 15%; @@ -145,7 +145,7 @@ const BannerSectionWrapper = styled.div` @media screen and (max-width: 768px) { padding: 8rem 2rem 3rem; - .meshmap-logo { + .kanvas-logo { margin-top: -5rem; margin-right: 2rem; left: 7%; @@ -154,7 +154,7 @@ const BannerSectionWrapper = styled.div` border-radius: 0% 85% 0% 0% / 0% 40% 0% 0% ; } @media screen and (max-width: 500px) { - .meshmap-logo { + .kanvas-logo { margin-top: -5rem; margin-right: 2rem; left: 0%; @@ -163,7 +163,7 @@ const BannerSectionWrapper = styled.div` border-radius: 0% 85% 0% 0% / 0% 40% 0% 0% ; } @media screen and (max-width: 400px) { - .meshmap-logo { + .kanvas-logo { margin-top: -5rem; margin-right: 0; left: -20%; @@ -178,7 +178,7 @@ const BannerSection = () => { return (
    - {/* */} + {/* */}

    Step aside, YAML

    Meshery is here

    {/*

    the world's only visual designer for cloud native infrastructure.

    */} @@ -192,8 +192,8 @@ const BannerSection = () => {

    Collaborate and Design

    any and all your cloud native infra and apps */}
    -
    - Meshery Logo +
    + Meshery Logo {/*
    asdf
    */}
    {/*

    Ready, Players?

    */} diff --git a/src/sections/Meshmap/meshery-action.js b/src/sections/Kanvas/meshery-action.js similarity index 97% rename from src/sections/Meshmap/meshery-action.js rename to src/sections/Kanvas/meshery-action.js index 8f3e37ea6e37..73c01333d1cb 100644 --- a/src/sections/Meshmap/meshery-action.js +++ b/src/sections/Kanvas/meshery-action.js @@ -97,7 +97,7 @@ p.caption { const MesheryAction = () => { return ( -

    See MeshMap In-Action

    +

    See Kanvasn-Action

    Recently on-stage at...

    diff --git a/src/sections/Meshmap/signup-form.js b/src/sections/Kanvas/signup-form.js similarity index 79% rename from src/sections/Meshmap/signup-form.js rename to src/sections/Kanvas/signup-form.js index 081d79737872..85ebec50c168 100644 --- a/src/sections/Meshmap/signup-form.js +++ b/src/sections/Kanvas/signup-form.js @@ -10,7 +10,7 @@ const SignupFormWrapper = styled.div` flex-direction: column; } - .meshmap-video { + .kanvas-video { /* box-shadow: 0px 5px 5px 2px #b3b3b3; */ height: 28rem; text-align: center; @@ -31,20 +31,20 @@ const SignupForm = ({ targetRef }) => {

    Signup for

    -

    MeshMap Beta

    +

    Kanvas Beta

    Join the waiting list for participation in the beta program. Your request for access will be processed as quickly as possible. Due to the large influx of program participation requests, it may take some time before system access is granted. So that you can familiarize while you wait, the Layer5 team will - send you additional information about beta program, MeshMap + send you additional information about beta program, Kanvas modes, and cloud native design patterns.

    -
    - {/*

    Help choose the best logo for MeshMap:

    +
    + {/*

    Help choose the best logo for Kanvas:

    - MeshMap Draft
    + Kanvas Draft

    Vote for your favorite design

    */}