From 123531995d0da7ff90f1f1b894fd4f0c15ad2d8a Mon Sep 17 00:00:00 2001 From: Josh Olson Date: Tue, 8 Sep 2026 10:29:40 -0500 Subject: [PATCH] Use the specific version of https://github.com/traefik/traefik-helm-chart/ that has been confirmed to work with NBS 7.13 --- .../full-deploy/kubernetes-setup/deploy-core-services.md | 4 ++-- docs/deploy-nbs7/quickstart/quickstart-aws.md | 2 +- docs/deploy-nbs7/quickstart/quickstart-azure.md | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/deploy-nbs7/full-deploy/kubernetes-setup/deploy-core-services.md b/docs/deploy-nbs7/full-deploy/kubernetes-setup/deploy-core-services.md index e8c9139..5cdb961 100644 --- a/docs/deploy-nbs7/full-deploy/kubernetes-setup/deploy-core-services.md +++ b/docs/deploy-nbs7/full-deploy/kubernetes-setup/deploy-core-services.md @@ -81,13 +81,13 @@ The [[traefik]] Helm chart in the [NEDSS-Helm repository][nedss-helm-repo] sets - **AWS:** ```bash - helm install traefik traefik/traefik --namespace traefik --create-namespace -f ./traefik/values.yaml + helm install traefik traefik/traefik --namespace traefik --create-namespace -f ./traefik/values.yaml --version 41.01 ``` - **Azure:** ```bash - helm install traefik traefik/traefik --namespace traefik --create-namespace -f ./traefik/values-azure.yaml + helm install traefik traefik/traefik --namespace traefik --create-namespace -f ./traefik/values-azure.yaml --version 41.01 ``` > If your [[aks]] cluster has Windows node pools, for example for [[classic-nbs|NBS 6]], append the following option to the Azure command so that Traefik is scheduled on a Linux node: `--set nodeSelector."kubernetes\.io/os"=linux` diff --git a/docs/deploy-nbs7/quickstart/quickstart-aws.md b/docs/deploy-nbs7/quickstart/quickstart-aws.md index 8910696..d1acf68 100644 --- a/docs/deploy-nbs7/quickstart/quickstart-aws.md +++ b/docs/deploy-nbs7/quickstart/quickstart-aws.md @@ -118,7 +118,7 @@ The Traefik controller creates a Network Load Balancer (NLB) in AWS and routes t 1. Deploy the Traefik controller: ```bash - helm install traefik traefik/traefik --namespace traefik --create-namespace -f ./traefik/values.yaml + helm install traefik traefik/traefik --namespace traefik --create-namespace -f ./traefik/values.yaml --version 41.01 ``` 1. Confirm that the Traefik pod has a `STATUS` of `Running` and that the two numbers in the `READY` column match: diff --git a/docs/deploy-nbs7/quickstart/quickstart-azure.md b/docs/deploy-nbs7/quickstart/quickstart-azure.md index dd1edfd..57e4b37 100644 --- a/docs/deploy-nbs7/quickstart/quickstart-azure.md +++ b/docs/deploy-nbs7/quickstart/quickstart-azure.md @@ -119,7 +119,7 @@ The Traefik controller creates an internal load balancer in Azure and routes tra 1. Deploy the Traefik controller with the Azure values file: ```bash - helm install traefik traefik/traefik --namespace traefik --create-namespace -f ./traefik/values-azure.yaml + helm install traefik traefik/traefik --namespace traefik --create-namespace -f ./traefik/values-azure.yaml --version 41.01 ``` > If your AKS cluster has Windows node pools, for example for NBS 6, append the following option so that Traefik is scheduled on a Linux node: `--set nodeSelector."kubernetes\.io/os"=linux`