Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Rdp add highlighted workshops page #10

Merged
merged 5 commits into from
Jan 28, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/getting-started/setting-up-lab-environment.md
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ az group create \
Run the following command to download the Bicep template file to deploy the lab resources.

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

Verify the contents of the **main.bicep** file by running the following command.
Expand Down
47 changes: 0 additions & 47 deletions docs/intro.md

This file was deleted.

51 changes: 51 additions & 0 deletions docs/intro.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
---
sidebar_position: 1
sidebar_label: Introduction to AKS Labs
---



export const HighlightedWorkshops = () => (
<article className="margin-top--lg">
<section className="row list">
<article className="col col--6 margin-bottom--lg">
<a className="card padding--lg cardContainer"
href="/docs/getting-started/getting-started-with-k8s-on-aks">
<h2 className="text--truncate cardTitle" title="Getting Started on AKS">
Getting Started on AKS
</h2>
<p className="cardDescription">
Learn how to deploy a Kubernetes cluster on Azure Kubernetes Service (AKS). </p>
</a>
</article>
<article className="col col--6 margin-bottom--lg">
<a className="card padding--lg cardContainer"
href="/docs/getting-started/getting-started-with-aks-automatic">
<h2 className="text--truncate cardTitle">
Getting Started with AKS Automatic
</h2>
<p className="cardDescription">
Learn how to deploy a Kubernetes cluster using AKS Automatic. </p>
</a>
</article>
<article className="col col--6 margin-bottom--lg">
<a className="card padding--lg cardContainer"
href="/docs/networking/istio-lab">
<h2 className="text--truncate cardTitle">
Istio Service Mesh
</h2>
<p className="cardDescription">
Learn how to implment service discovery on Azure Kubernetes Service (AKS) using Istio Service Mesh. </p>
</a>
</article>
</section>
</article>
);

# Introduction to AKS Labs

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.

## Featured Workshops

<HighlightedWorkshops />