Skip to content
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: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Upgrade `async-nats`
- `test-mm-lobby-echo` now handles `SIGTERM` and exits immediately, allows for less resource consumption while testing lobbies
- **mm** Dynamically sleep based on lobby's `create_ts` for Treafik config to update
- **Infra** Update Traefik tunnel client & server to v3.0.0-beta5
- **Infra** Update Traefik load balancer to v2.10.7

### Security

Expand Down
5 changes: 5 additions & 0 deletions infra/tf/k8s_infra/traefik.tf
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,11 @@ resource "helm_release" "traefik" {
chart = "traefik"
version = "24.0.0"
values = [yamlencode({
# Upgrade image to fix CVEs
image = {
tag = "v2.10.7"
}

# Allows referencing services outside of the traefik namespace
providers = {
kubernetesCRD = {
Expand Down
2 changes: 1 addition & 1 deletion infra/tf/k8s_infra/traefik_tunnel.tf
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ resource "helm_release" "traefik_tunnel" {
values = [yamlencode({
# Use Traefik v3 beta for TLS servers transport support
image = {
tag = "v3.0.0-beta3"
tag = "v3.0.0-beta5"
}
ports = {
# Disable default ports
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Use Traefik v3 beta for TLS servers transport support
version="3.0.0-beta3"
version="3.0.0-beta5"

# Create traefik user
if ! id -u "traefik" &>/dev/null; then
Expand Down