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

✨ release 21.1.0 #796

Merged
merged 1 commit into from
Feb 15, 2023
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
38 changes: 37 additions & 1 deletion traefik/Changelog.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,46 @@
# Change Log

## 21.1.0 ![AppVersion: v2.9.7](https://img.shields.io/static/v1?label=AppVersion&message=v2.9.7&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-15

* ✨ release 21.1.0
* ⬆️ Upgrade traefik Docker tag to v2.9.7
* fix: traefik image name for renovate
* feat: Add volumeName to PersistentVolumeClaim (#792)
* Allow setting TLS options on dashboard IngressRoute

### Default value changes

```diff
diff --git a/traefik/values.yaml b/traefik/values.yaml
index 780b04b..cadc7a6 100644
--- a/traefik/values.yaml
+++ b/traefik/values.yaml
@@ -142,6 +142,8 @@ ingressRoute:
entryPoints: ["traefik"]
# Additional ingressRoute middlewares (e.g. for authentication)
middlewares: []
+ # TLS options (e.g. secret containing certificate)
+ tls: {}

# Customize updateStrategy of traefik pods
updateStrategy:
@@ -750,6 +752,7 @@ persistence:
accessMode: ReadWriteOnce
size: 128Mi
# storageClass: ""
+ # volumeName: ""
path: /data
annotations: {}
# subPath: "" # only mount a subpath of the Volume into the pod
```

## 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
* 💥 New release with BREAKING changes (#786)
* Configure Renovate (#783)
* :bug: Disabling dashboard ingressroute should delete it (#785)
* :boom: Rename image.name => image.repository (#784)
Expand Down
17 changes: 6 additions & 11 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: 21.0.0
version: 21.1.0
# renovate: image=traefik
appVersion: v2.9.7
kubeVersion: ">=1.16.0-0"
Expand All @@ -28,13 +28,8 @@ maintainers:
icon: https://raw.githubusercontent.com/traefik/traefik/v2.3/docs/content/assets/img/traefik.logo.png
annotations:
artifacthub.io/changes: |
- "💥 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"
- "✨ release 21.1.0"
- "⬆️ Upgrade traefik Docker tag to v2.9.7"
- "fix: traefik image name for renovate"
- "feat: Add volumeName to PersistentVolumeClaim (#792)"
- "Allow setting TLS options on dashboard IngressRoute"