Skip to content

Commit 4320191

Browse files
authored
Rdp add highlighted workshops page (#10)
* changed URL for main.bicep to fetch from the repo * added cards for highlighted workshops * typo fix * remove experimental component * Update intro.mdx Change "Highlighted Workshops" to "Featured Workshops --------- Co-authored-by: Russell de Pina <[email protected]>
1 parent 48bb382 commit 4320191

File tree

3 files changed

+52
-48
lines changed

3 files changed

+52
-48
lines changed

docs/getting-started/setting-up-lab-environment.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ az group create \
8080
Run the following command to download the Bicep template file to deploy the lab resources.
8181

8282
```bash
83-
curl -o main.bicep https://gist.githubusercontent.com/pauldotyu/2051a64e4709d5248902b7f8e26ff41b/raw/c2f6266927149d18cd7bda78ab832beb0cb70b95/main.bicep
83+
curl -o main.bicep https://raw.githubusercontent.com/azure-samples/aks-labs/docs/storage/assets/main.bicep
8484
```
8585

8686
Verify the contents of the **main.bicep** file by running the following command.

docs/intro.md

-47
This file was deleted.

docs/intro.mdx

+51
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
---
2+
sidebar_position: 1
3+
sidebar_label: Introduction to AKS Labs
4+
---
5+
6+
7+
8+
export const HighlightedWorkshops = () => (
9+
<article className="margin-top--lg">
10+
<section className="row list">
11+
<article className="col col--6 margin-bottom--lg">
12+
<a className="card padding--lg cardContainer"
13+
href="/docs/getting-started/getting-started-with-k8s-on-aks">
14+
<h2 className="text--truncate cardTitle" title="Getting Started on AKS">
15+
Getting Started on AKS
16+
</h2>
17+
<p className="cardDescription">
18+
Learn how to deploy a Kubernetes cluster on Azure Kubernetes Service (AKS). </p>
19+
</a>
20+
</article>
21+
<article className="col col--6 margin-bottom--lg">
22+
<a className="card padding--lg cardContainer"
23+
href="/docs/getting-started/getting-started-with-aks-automatic">
24+
<h2 className="text--truncate cardTitle">
25+
Getting Started with AKS Automatic
26+
</h2>
27+
<p className="cardDescription">
28+
Learn how to deploy a Kubernetes cluster using AKS Automatic. </p>
29+
</a>
30+
</article>
31+
<article className="col col--6 margin-bottom--lg">
32+
<a className="card padding--lg cardContainer"
33+
href="/docs/networking/istio-lab">
34+
<h2 className="text--truncate cardTitle">
35+
Istio Service Mesh
36+
</h2>
37+
<p className="cardDescription">
38+
Learn how to implment service discovery on Azure Kubernetes Service (AKS) using Istio Service Mesh. </p>
39+
</a>
40+
</article>
41+
</section>
42+
</article>
43+
);
44+
45+
# Introduction to AKS Labs
46+
47+
AKS Labs is a series of workshops designed to help you learn how to use Azure Kubernetes Service (AKS) to deploy, scale, and manage containerized applications using Kubernetes. The workshops are designed to provide a hands-on learning experience.
48+
49+
## Featured Workshops
50+
51+
<HighlightedWorkshops />

0 commit comments

Comments
 (0)