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

Updating treafik #338

Merged
merged 2 commits into from
Aug 11, 2022
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 07-bootstrap-validation.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ GitOps allows a team to author Kubernetes manifest files, persist them in their
* AAD Pod Identity
* the workload's namespace named `a0008`

1. Install `kubectl` 1.23 or newer. (`kubectl` supports ±1 Kubernetes version.)
1. Install `kubectl` 1.24 or newer. (`kubectl` supports ±1 Kubernetes version.)

```bash
sudo az aks install-cli
Expand Down
2 changes: 1 addition & 1 deletion 09-secret-management-and-ingress-controller.md
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ Previously you have configured [workload prerequisites](./08-workload-prerequisi

```bash
# Import ingress controller image hosted in public container registries
az acr import --source docker.io/library/traefik:v2.5.3 -n $ACR_NAME_AKS_BASELINE
az acr import --source docker.io/library/traefik:v2.8.1 -n $ACR_NAME_AKS_BASELINE
```

1. Install the Traefik Ingress Controller.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ Finally, this implementation uses the [ASP.NET Core Docker sample web app](https

#### Azure platform

- AKS v1.23
- AKS v1.24
- System and User [node pool separation](https://docs.microsoft.com/azure/aks/use-system-pools)
- [AKS-managed Azure AD](https://docs.microsoft.com/azure/aks/managed-aad)
- Azure AD-backed Kubernetes RBAC (_local user accounts disabled_)
Expand Down
6 changes: 3 additions & 3 deletions workload/traefik.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -227,10 +227,10 @@ spec:
# PRODUCTION READINESS CHANGE REQUIRED
# This image should be sourced from a non-public container registry, such as the
# one deployed along side of this reference implementation.
# az acr import --source docker.io/library/traefik:v2.5.3 -n <your-acr-instance-name>
# az acr import --source docker.io/library/traefik:v2.8.1 -n <your-acr-instance-name>
# and then set this to
# image: <your-acr-instance-name>.azurecr.io/library/traefik:v2.5.3
- image: docker.io/library/traefik:v2.5.3
# image: <your-acr-instance-name>.azurecr.io/library/traefik:v2.8.1
- image: docker.io/library/traefik:v2.8.1
name: traefik-ingress-controller
resources:
requests:
Expand Down