From 9fb7fcae5e99c733c5dff415d2c60a2726238c38 Mon Sep 17 00:00:00 2001 From: Deepak Choudhary <114693662+Deepak-Choudhary0@users.noreply.github.com> Date: Sun, 25 Jun 2023 06:12:35 +0530 Subject: [PATCH 1/5] Updated a Form in index.mdx Signed-off-by: Deepak Choudhary <114693662+Deepak-Choudhary0@users.noreply.github.com> --- src/collections/service-mesh-books/Book.style.js | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/src/collections/service-mesh-books/Book.style.js b/src/collections/service-mesh-books/Book.style.js index 9381f1554a90..4eed0e36100f 100644 --- a/src/collections/service-mesh-books/Book.style.js +++ b/src/collections/service-mesh-books/Book.style.js @@ -2,7 +2,7 @@ import styled from "styled-components"; export const BookWrapper = styled.div` - .book{ + .book,.book-1,.book-2{ float:right; padding:20px; text-align:center; @@ -17,6 +17,17 @@ export const BookWrapper = styled.div` } } + .book{ + float:right; + } + .book-1,.book-2{ + display:flex; + justify-content:center; + align-items:center; + @media only screen and (max-width: 568px){ + display:block; + } + } div.center { text-align:center; margin: 1rem 0rem; From c3386ecf3083dfc3064e81798d5da38901a93b50 Mon Sep 17 00:00:00 2001 From: Deepak Choudhary <114693662+Deepak-Choudhary0@users.noreply.github.com> Date: Sun, 25 Jun 2023 06:26:18 +0530 Subject: [PATCH 2/5] Update index.mdx Signed-off-by: Deepak Choudhary <114693662+Deepak-Choudhary0@users.noreply.github.com> --- .../index.mdx | 26 ++++++++++++++++--- 1 file changed, 22 insertions(+), 4 deletions(-) diff --git a/src/collections/service-mesh-books/the-enterprise-path-to-service-mesh-architectures-2nd-Edition/index.mdx b/src/collections/service-mesh-books/the-enterprise-path-to-service-mesh-architectures-2nd-Edition/index.mdx index ee7479d8d294..5d06965338ba 100644 --- a/src/collections/service-mesh-books/the-enterprise-path-to-service-mesh-architectures-2nd-Edition/index.mdx +++ b/src/collections/service-mesh-books/the-enterprise-path-to-service-mesh-architectures-2nd-Edition/index.mdx @@ -14,13 +14,10 @@ redirect_from: import { BookWrapper } from "../Book.style.js"; import service_mesh_book_second_edition from "./The-Enterprise-path-to-service-mesh-Architectures-2nd-Edition.webp" import Button from "../../../reusecore/Button"; +import CommonForm from "../../../components/CommonForm"; -
 
-
- Planning to build a microservice-driven cloud native application or looking to modernize existing application services? Consider using a service mesh. A service mesh approach can help you create robust and scalable applications, but it also introduces new challenges. This updated report answers common questions regarding service mesh architectures through the lens of a large enterprise. Author Lee Calcote, founder and CEO of Layer5, shows developers, operators, architects, and IT leaders how to evaluate your organization’s readiness for using a service mesh—and provides a clear path to help you adopt one. You’ll evaluate several factors when deciding which applications should be built from the ground up and which can be converted with a new service mesh architecture. @@ -38,4 +35,25 @@ This updated edition discusses several service meshes available and the tools yo
Early Release: Summer 2020
Publish: November 2020 +
The-Enterprise-Path-to-Service-Mesh-Architectures
 
+
+ + learning path.', + }} + /> + } + /> + +
+
+
From a7b5865df852279bdde8923358581088e8d251e0 Mon Sep 17 00:00:00 2001 From: Deepak Choudhary <114693662+Deepak-Choudhary0@users.noreply.github.com> Date: Sun, 25 Jun 2023 09:57:54 +0530 Subject: [PATCH 3/5] Update Book.style.js Signed-off-by: Deepak Choudhary <114693662+Deepak-Choudhary0@users.noreply.github.com> --- src/collections/service-mesh-books/Book.style.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/collections/service-mesh-books/Book.style.js b/src/collections/service-mesh-books/Book.style.js index 4eed0e36100f..12e5a86e9be7 100644 --- a/src/collections/service-mesh-books/Book.style.js +++ b/src/collections/service-mesh-books/Book.style.js @@ -3,8 +3,6 @@ import styled from "styled-components"; export const BookWrapper = styled.div` .book,.book-1,.book-2{ - float:right; - padding:20px; text-align:center; @media only screen and (max-width: 568px){ float: inherit; From de3e97f801b0f58fb4aecd170fcb65558919324b Mon Sep 17 00:00:00 2001 From: Deepak Choudhary <114693662+Deepak-Choudhary0@users.noreply.github.com> Date: Tue, 27 Jun 2023 06:52:13 +0530 Subject: [PATCH 4/5] Update Book.style.js Signed-off-by: Deepak Choudhary <114693662+Deepak-Choudhary0@users.noreply.github.com> --- src/collections/service-mesh-books/Book.style.js | 15 +++------------ 1 file changed, 3 insertions(+), 12 deletions(-) diff --git a/src/collections/service-mesh-books/Book.style.js b/src/collections/service-mesh-books/Book.style.js index 12e5a86e9be7..9381f1554a90 100644 --- a/src/collections/service-mesh-books/Book.style.js +++ b/src/collections/service-mesh-books/Book.style.js @@ -2,7 +2,9 @@ import styled from "styled-components"; export const BookWrapper = styled.div` - .book,.book-1,.book-2{ + .book{ + float:right; + padding:20px; text-align:center; @media only screen and (max-width: 568px){ float: inherit; @@ -15,17 +17,6 @@ export const BookWrapper = styled.div` } } - .book{ - float:right; - } - .book-1,.book-2{ - display:flex; - justify-content:center; - align-items:center; - @media only screen and (max-width: 568px){ - display:block; - } - } div.center { text-align:center; margin: 1rem 0rem; From 77c586632de2d1a22c4cb8b1b441d058157d3bb2 Mon Sep 17 00:00:00 2001 From: Deepak Choudhary <114693662+Deepak-Choudhary0@users.noreply.github.com> Date: Tue, 27 Jun 2023 07:20:07 +0530 Subject: [PATCH 5/5] simplified Signed-off-by: Deepak Choudhary <114693662+Deepak-Choudhary0@users.noreply.github.com> --- .../index.mdx | 48 +++++++++---------- 1 file changed, 23 insertions(+), 25 deletions(-) diff --git a/src/collections/service-mesh-books/the-enterprise-path-to-service-mesh-architectures-2nd-Edition/index.mdx b/src/collections/service-mesh-books/the-enterprise-path-to-service-mesh-architectures-2nd-Edition/index.mdx index 5d06965338ba..38e24cd17048 100644 --- a/src/collections/service-mesh-books/the-enterprise-path-to-service-mesh-architectures-2nd-Edition/index.mdx +++ b/src/collections/service-mesh-books/the-enterprise-path-to-service-mesh-architectures-2nd-Edition/index.mdx @@ -18,42 +18,40 @@ import CommonForm from "../../../components/CommonForm"; +
The-Enterprise-Path-to-Service-Mesh-Architectures
 
+
+
+
+ Planning to build a microservice-driven cloud native application or looking to modernize existing application services? Consider using a service mesh. A service mesh approach can help you create robust and scalable applications, but it also introduces new challenges. This updated report answers common questions regarding service mesh architectures through the lens of a large enterprise. Author Lee Calcote, founder and CEO of Layer5, shows developers, operators, architects, and IT leaders how to evaluate your organization’s readiness for using a service mesh—and provides a clear path to help you adopt one. You’ll evaluate several factors when deciding which applications should be built from the ground up and which can be converted with a new service mesh architecture. This updated edition discusses several service meshes available and the tools you need to implement them. You’ll explore: - +
  • Service mesh concepts, architecture, and components, such as control planes and data planes
  • How a service mesh provides observability, resiliency, security, and traffic control of distributed application services
  • Differences among service meshes and service mesh components from several vendors
  • How service meshes compare to related technologies, including container orchestrators, API gateways, and client-side libraries
  • Practical steps for service mesh adoption, deployment, customization, and integration
  • The intelligence of the cloud native management plane and the power of the data plane
  • - -
    -
    Early Release: Summer 2020 -
    Publish: November 2020 - -
    The-Enterprise-Path-to-Service-Mesh-Architectures
     
    -
    - - learning path.', - }} - /> - } - /> - -
    +  +learning path.', + }} + /> + } +/> +