From 6943839fa6a1a4c883ef2a97cc59b04a885b44b8 Mon Sep 17 00:00:00 2001 From: Hashim Khan Date: Sat, 1 Aug 2026 19:05:04 +0500 Subject: [PATCH] Fix Hybrid Azure Arc Kubernetes walkthrough path typo Use walkthrough (singular) to match the actual directory name. Fixes #361 --- .../walkthrough/challenge-01/solution.md | 2 +- .../walkthrough/challenge-05/solution.md | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/03-Azure/01-03-Infrastructure/03_Hybrid_Azure_Arc_Kubernetes/walkthrough/challenge-01/solution.md b/03-Azure/01-03-Infrastructure/03_Hybrid_Azure_Arc_Kubernetes/walkthrough/challenge-01/solution.md index 64dede32..54c7942e 100644 --- a/03-Azure/01-03-Infrastructure/03_Hybrid_Azure_Arc_Kubernetes/walkthrough/challenge-01/solution.md +++ b/03-Azure/01-03-Infrastructure/03_Hybrid_Azure_Arc_Kubernetes/walkthrough/challenge-01/solution.md @@ -62,7 +62,7 @@ kubectl get nodes ## Task 2 - Connect K8s cluster using script * In your shell go to the folder where you cloned the microhack repository -* Change to the sub-folder '03-Azure/01-03-Infrastructure/03_Hybrid_Azure_Arc_Kubernetes/walkthroughs/challenge-01' +* Change to the sub-folder '03-Azure/01-03-Infrastructure/03_Hybrid_Azure_Arc_Kubernetes/walkthrough/challenge-01' * Execute the script to * register required resource providers in your subscription (this step may take several minutes if the resource providers have not been registered before): * Microsoft.Kubernetes diff --git a/03-Azure/01-03-Infrastructure/03_Hybrid_Azure_Arc_Kubernetes/walkthrough/challenge-05/solution.md b/03-Azure/01-03-Infrastructure/03_Hybrid_Azure_Arc_Kubernetes/walkthrough/challenge-05/solution.md index a18f2422..e70a4c5e 100644 --- a/03-Azure/01-03-Infrastructure/03_Hybrid_Azure_Arc_Kubernetes/walkthrough/challenge-05/solution.md +++ b/03-Azure/01-03-Infrastructure/03_Hybrid_Azure_Arc_Kubernetes/walkthrough/challenge-05/solution.md @@ -61,7 +61,7 @@ az k8s-extension create \ git config core.sparseCheckout true # Specify the folder to checkout (the namespaces folder for this challenge) - echo "03-Azure/01-03-Infrastructure/03_Hybrid_Azure_Arc_Kubernetes/walkthroughs/challenge-05/namespaces" >> .git/info/sparse-checkout + echo "03-Azure/01-03-Infrastructure/03_Hybrid_Azure_Arc_Kubernetes/walkthrough/challenge-05/namespaces" >> .git/info/sparse-checkout # Pull the content git pull origin main @@ -73,7 +73,7 @@ az k8s-extension create \ In order to manage a namespace via flux, you need a repository. In this microhack we're using a public github repository. If using a private repo make sure to add credentials so flux is able to access your repository. The following command creates a flux configuration which watches the namespaces folder within this repository. All namespace definitions found in this folder will be applied to the cluster. ```bash repository="https://github.com//MicroHack" #Change to your own fork of the Microhack repository -path="/03-Azure/01-03-Infrastructure/03_Hybrid_Azure_Arc_Kubernetes/walkthroughs/challenge-05/namespaces" +path="/03-Azure/01-03-Infrastructure/03_Hybrid_Azure_Arc_Kubernetes/walkthrough/challenge-05/namespaces" az k8s-configuration flux create \ --resource-group $arc_resource_group \