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`