Skip to content
Draft
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
Original file line number Diff line number Diff line change
Expand Up @@ -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`
Expand Down
2 changes: 1 addition & 1 deletion docs/deploy-nbs7/quickstart/quickstart-aws.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion docs/deploy-nbs7/quickstart/quickstart-azure.md
Original file line number Diff line number Diff line change
Expand Up @@ -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`
Expand Down