Skip to content

Commit

Permalink
πŸ’₯ New release with BREAKING changes (#786)
Browse files Browse the repository at this point in the history
  • Loading branch information
mloiseleur authored Feb 10, 2023
1 parent a0fe1e4 commit 0f51df0
Show file tree
Hide file tree
Showing 2 changed files with 96 additions and 5 deletions.
86 changes: 85 additions & 1 deletion traefik/Changelog.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,92 @@
# Change Log

## 21.0.0 ![AppVersion: v2.9.6](https://img.shields.io/static/v1?label=AppVersion&message=v2.9.6&color=success&logo=) ![Kubernetes: >=1.16.0-0](https://img.shields.io/static/v1?label=Kubernetes&message=%3E%3D1.16.0-0&color=informational&logo=kubernetes) ![Helm: v3](https://img.shields.io/static/v1?label=Helm&message=v3&color=informational&logo=helm)

**Release date:** 2023-02-10

* πŸ’₯ New release with BREAKING changes
* Configure Renovate (#783)
* :bug: Disabling dashboard ingressroute should delete it (#785)
* :boom: Rename image.name => image.repository (#784)
* :necktie: Improve labels settings behavior on metrics providers (#774)
* ✨ Chart.yaml - add kubeVersion: ">=1.16.0-0"
* fix: allowExternalNameServices for kubernetes ingress when hub enabled (#772)
* πŸ™ˆ Add a setting disable API check on Prometheus Operator (#769)
* πŸ“ Improve documentation on entrypoint options
* fix(service-metrics): invert prometheus svc & fullname length checking

### Default value changes

```diff
diff --git a/traefik/values.yaml b/traefik/values.yaml
index 42a27f9..780b04b 100644
--- a/traefik/values.yaml
+++ b/traefik/values.yaml
@@ -1,6 +1,6 @@
# Default values for Traefik
image:
- name: traefik
+ repository: traefik
# defaults to appVersion
tag: ""
pullPolicy: IfNotPresent
@@ -396,6 +396,8 @@ metrics:
# enabled: false
# labels: {}
# annotations: {}
+ ## When set to true, it won't check if Prometheus Operator CRDs are deployed
+ # disableAPICheck: false
# serviceMonitor:
# metricRelabelings: []
# - sourceLabels: [__name__]
@@ -580,7 +582,7 @@ ports:
# hostPort: 8443
expose: true
exposedPort: 443
- # The port protocol (TCP/UDP)
+ ## The port protocol (TCP/UDP)
protocol: TCP
# nodePort: 32443
#
@@ -594,6 +596,16 @@ ports:
enabled: false
# advertisedPort: 4443
#
+ ## Trust forwarded headers information (X-Forwarded-*).
+ #forwardedHeaders:
+ # trustedIPs: []
+ # insecure: false
+ #
+ ## Enable the Proxy Protocol header parsing for the entry point
+ #proxyProtocol:
+ # trustedIPs: []
+ # insecure: false
+ #
## Set TLS at the entrypoint
## https://doc.traefik.io/traefik/routing/entrypoints/#tls
tls:
@@ -607,16 +619,6 @@ ports:
# - foo.example.com
# - bar.example.com
#
- # Trust forwarded headers information (X-Forwarded-*).
- # forwardedHeaders:
- # trustedIPs: []
- # insecure: false
- #
- # Enable the Proxy Protocol header parsing for the entry point
- # proxyProtocol:
- # trustedIPs: []
- # insecure: false
- #
# One can apply Middlewares on an entrypoint
# https://doc.traefik.io/traefik/middlewares/overview/
# https://doc.traefik.io/traefik/routing/entrypoints/#middlewares
```

## 20.8.0 ![AppVersion: v2.9.6](https://img.shields.io/static/v1?label=AppVersion&message=v2.9.6&color=success&logo=) ![Helm: v3](https://img.shields.io/static/v1?label=Helm&message=v3&color=informational&logo=helm)

**Release date:** 2022-12-08
**Release date:** 2022-12-09

* ✨ update chart to version 20.8.0
* ✨ add support for default entrypoints
Expand Down
15 changes: 11 additions & 4 deletions traefik/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apiVersion: v2
name: traefik
description: A Traefik based Kubernetes ingress controller
type: application
version: 20.8.0
version: 21.0.0
# renovate: image=traefik/traefik
appVersion: v2.9.6
kubeVersion: ">=1.16.0-0"
Expand All @@ -28,6 +28,13 @@ maintainers:
icon: https://raw.githubusercontent.com/traefik/traefik/v2.3/docs/content/assets/img/traefik.logo.png
annotations:
artifacthub.io/changes: |
- "✨ update chart to version 20.8.0"
- "✨ add support for default entrypoints"
- "✨ add support for OpenTelemetry and Traefik v3"
- "πŸ’₯ New release with BREAKING changes"
- "Configure Renovate (#783)"
- ":bug: Disabling dashboard ingressroute should delete it (#785)"
- ":boom: Rename image.name => image.repository (#784)"
- ":necktie: Improve labels settings behavior on metrics providers (#774)"
- "✨ Chart.yaml - add kubeVersion: ">=1.16.0-0""
- "fix: allowExternalNameServices for kubernetes ingress when hub enabled (#772)"
- "πŸ™ˆ Add a setting disable API check on Prometheus Operator (#769)"
- "πŸ“ Improve documentation on entrypoint options"
- "fix(service-metrics): invert prometheus svc & fullname length checking"

0 comments on commit 0f51df0

Please sign in to comment.