Skip to content

Commit 9168e1c

Browse files
committed
fixes
Signed-off-by: Lee Calcote <lee.calcote@layer5.io>
1 parent e111e02 commit 9168e1c

6 files changed

Lines changed: 15 additions & 13 deletions

File tree

  • src/collections/blog
    • 2020
      • 2020-03-11-deploying-linkerd-with-meshery
      • 2020-05-21-getting-started-with-mesheryctl
      • 2020-06-01-meshery-accepted-into-cncf-landscape
      • 2020-07-18-service-mesh-patterns-for-multitenancy
      • 2020-11-17-layer5-at-kubecon-2020
    • 2021/2021-02-07-meshkit-and-meshery-adapter-library

src/collections/blog/2020/2020-03-11-deploying-linkerd-with-meshery/index.mdx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,10 +35,9 @@ import {Link} from "gatsby"
3535
<div>
3636
<div>
3737

38-
<iframe width="100%" src="https://www.youtube.com/embed/MXQV-i-Hkf8" loading="lazy" frameborder="0"
39-
allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture"
40-
style="min-height: 315px; min-width: 280px;
41-
"></iframe>
38+
39+
<iframe width="100%" src="https://www.youtube.com/embed/MXQV-i-Hkf8" loading="lazy" frameBorder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" style={{minHeight: "315px", minWidth: "280px"}}></iframe>
40+
4241
</div>
4342
But with so many mesh options around - how do we choose, evaluate and compare them? And once we’ve chosen a solution - how do we make it accessible to all our engineers? It is to provide an answer to these questions that the Layer5 community has created <Link to="/cloud-native-management/meshery">Meshery</Link>, the open-source, service mesh management plane. Meshery already supports a number of leading mesh providers with adapters for additional meshes on the way. In today’s video, I’ll show how to use Meshery for rolling out and evaluating Linkerd.
4443

@@ -150,3 +149,4 @@ Happy meshing!
150149

151150

152151
</BlogWrapper>
152+

src/collections/blog/2020/2020-05-21-getting-started-with-mesheryctl/index.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ We believe we have not missed any of the popular platforms for what it’s worth
153153
154154
If you are thinking about the requirements you would have to run `mesheryctl`, so to your surprise, to successfully run `mesheryctl` you will only need :
155155
156-
<table style={{ textAlign: "center" }} className="table-box"<tbody><tr><td className="text-centre">a running Docker daemon</td></tr></tbody></table>
156+
<table style={{ textAlign: "center" }} className="table-box"><tbody><tr><td className="text-centre">a running Docker daemon</td></tr></tbody></table>
157157
158158
### Into the MesheryCTL
159159
@@ -182,7 +182,7 @@ Use "mesheryctl [command] --help" for more information about a command.
182182
183183
Once you do `mesheryctl system start`, Meshery will pull its adapters and latest docker images. Meshery will also detect your Kubernetes configuration and will let you know if Kubernetes is running. Meshery will run it’s web-based user interface on localhost port `9081` and will let you select your choice of <a href="https://docs.meshery.io/extensibility#providers">Provider</a> before you can start managing your infrastructure with this powerful utility.
184184
185-
<table style={{ textAlign: "center" }} className="table-box"<tbody><tr><td className="text-centre">One of the most interesting sub-commands of <code>mesheryctl</code> is <strong><code>perf</code></strong>.</td></tr></tbody></table>
185+
<table style={{ textAlign: "center" }} className="table-box"><tbody><tr><td className="text-centre">One of the most interesting sub-commands of <code>mesheryctl</code> is <strong><code>perf</code></strong>.</td></tr></tbody></table>
186186
187187
The `perf` subcommand enables you to being managing the performance of your cloud native deployment and your workloads running atop of them. It lets you benchmark your infrastructure without using the Meshery UI from the command line interface itself. Once you type `mesheryctl perf`, it will present you with all the powerful flags you can control with CLI, including providing it with a `--file` flag that points to any of a number of performance test profiles that you may have saved.
188188

src/collections/blog/2020/2020-06-01-meshery-accepted-into-cncf-landscape/index.mdx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,3 +68,4 @@ For example - I sometimes wish I had more time and motivation to code new Mesher
6868

6969

7070
</BlogWrapper>
71+

src/collections/blog/2020/2020-07-18-service-mesh-patterns-for-multitenancy/index.mdx

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ c. Ingress Gateway in the Worskpace 2 namespace for traffic entry point to the w
121121
profile: empty
122122
components:
123123
ingressGateways:
124-
name: wk1-ingressgw
124+
- name: wk1-ingressgw
125125
namespace: workspace-1
126126
enabled: true
127127
label:
@@ -141,7 +141,7 @@ c. Ingress Gateway in the Worskpace 2 namespace for traffic entry point to the w
141141
profile: empty
142142
components:
143143
ingressGateways:
144-
name: wk2-ingressgw
144+
- name: wk2-ingressgw
145145
namespace: workspace-2
146146
enabled: true
147147
label:
@@ -218,12 +218,12 @@ istiooperator.install.istio.io/wk2-gwconfig configured
218218
selector:
219219
istio: ingressgateway-1 # use istio gateway-1 controller in workspace-1
220220
servers:
221-
port:
221+
- port:
222222
number: 80
223223
name: http
224224
protocol: HTTP
225225
hosts:
226-
*
226+
-*
227227
$ cat istio/bookinfo-gateway-2.yaml
228228
apiVersion: networking.istio.io/v1alpha3
229229
kind: Gateway
@@ -233,12 +233,12 @@ istiooperator.install.istio.io/wk2-gwconfig configured
233233
selector:
234234
istio: ingressgateway-2 # use istio gateway-2 controller in workspace-1
235235
servers:
236-
port:
236+
- port:
237237
number: 80
238238
name: http
239239
protocol: HTTP
240240
hosts:
241-
*
241+
-*
242242
```
243243

244244
Deploy the applications in workspace-1 and workspace-2 and deploy the Gateway,VirtualService and DestinationRules.

src/collections/blog/2020/2020-11-17-layer5-at-kubecon-2020/index.mdx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -89,3 +89,4 @@ with the specification.
8989

9090

9191
</BlogWrapper>
92+

src/collections/blog/2021/2021-02-07-meshkit-and-meshery-adapter-library/index.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ import mesheryAdapterLibrary from "./meshery-adapter-library.svg";
2424
import malOverview from "./meshery-adapter-library-overview.webp";
2525

2626
<BlogWrapper>
27-
<MeshkitMesheryAdapterLib>
27+
<MeshkitMesheryAdapterLib />
2828

2929
<div className="intro">The Meshery v0.5.0 release includes two new libraries: <span>MeshKit</span> and <span>Meshery Adapter Library</span>.</div>
3030

0 commit comments

Comments
 (0)