Skip to content

Commit 912a61b

Browse files
authored
chore: release 34.3.0 and 1.3.0
1 parent 6c22e9b commit 912a61b

File tree

6 files changed

+77
-18
lines changed

6 files changed

+77
-18
lines changed

traefik-crds/Changelog.md

+7-1
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,17 @@
11
# Change Log
22

3+
## 1.3.0 ![Kubernetes: >=1.22.0-0](https://img.shields.io/static/v1?label=Kubernetes&message=%3E%3D1.22.0-0&color=informational&logo=kubernetes) ![Helm: v3](https://img.shields.io/static/v1?label=Helm&message=v3&color=informational&logo=helm)
4+
5+
* feat(deps): update traefik docker tag to v3.3.3
6+
* chore: update CRDs to v1.14.1
7+
8+
39
## 1.2.0 ![Kubernetes: >=1.22.0-0](https://img.shields.io/static/v1?label=Kubernetes&message=%3E%3D1.22.0-0&color=informational&logo=kubernetes) ![Helm: v3](https://img.shields.io/static/v1?label=Helm&message=v3&color=informational&logo=helm)
410

511
**Release date:** 2025-01-15
612

713
* feat(Traefik Hub): add OAS validateRequestMethodAndPath - CRDs update
8-
* chore(release): publish v34.1.0 and CRDs v1.2.0
14+
* chore(release): publish v34.1.0
915

1016

1117
## 1.1.0 ![Kubernetes: >=1.22.0-0](https://img.shields.io/static/v1?label=Kubernetes&message=%3E%3D1.22.0-0&color=informational&logo=kubernetes) ![Helm: v3](https://img.shields.io/static/v1?label=Helm&message=v3&color=informational&logo=helm)

traefik-crds/Chart.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ apiVersion: v2
22
name: traefik-crds
33
description: A Traefik based Kubernetes ingress controller
44
type: application
5-
version: 1.2.0
5+
version: 1.3.0
66
kubeVersion: ">=1.22.0-0"
77
keywords:
88
- traefik
@@ -23,5 +23,5 @@ maintainers:
2323
icon: https://raw.githubusercontent.com/traefik/traefik/v2.3/docs/content/assets/img/traefik.logo.png
2424
annotations:
2525
artifacthub.io/changes: |
26-
- "feat(Traefik Hub): add OAS validateRequestMethodAndPath - CRDs update"
27-
- "chore(release): publish v34.1.0 and CRDs v1.2.0"
26+
- "feat(deps): update traefik docker tag to v3.3.3"
27+
- "chore: update CRDs to v1.14.1"

traefik-crds/VALUES.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# traefik-crds
22

3-
![Version: 1.2.0](https://img.shields.io/badge/Version-1.2.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square)
3+
![Version: 1.3.0](https://img.shields.io/badge/Version-1.3.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square)
44

55
A Traefik based Kubernetes ingress controller
66

traefik/Changelog.md

+59-7
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,57 @@
11
# Change Log
22

3+
## 34.3.0 ![AppVersion: v3.3.3](https://img.shields.io/static/v1?label=AppVersion&message=v3.3.3&color=success&logo=) ![Kubernetes: >=1.22.0-0](https://img.shields.io/static/v1?label=Kubernetes&message=%3E%3D1.22.0-0&color=informational&logo=kubernetes) ![Helm: v3](https://img.shields.io/static/v1?label=Helm&message=v3&color=informational&logo=helm)
4+
5+
* fix(Traefik Hub): AIServices are available in API Gateway
6+
* fix(Traefik Hub): :bug: handle main and latest build
7+
* feat: :sparkles: add missing microcks provider for Hub
8+
* feat(deps): update traefik docker tag to v3.3.3
9+
* chore: update CRDs to v1.14.1
10+
11+
### Default value changes
12+
13+
```diff
14+
diff --git a/traefik/values.yaml b/traefik/values.yaml
15+
index 4f93924..2d8ac73 100644
16+
--- a/traefik/values.yaml
17+
+++ b/traefik/values.yaml
18+
@@ -948,6 +948,34 @@ hub:
19+
experimental:
20+
# -- Set to true in order to enable AI Gateway. Requires a valid license token.
21+
aigateway: false
22+
+ providers:
23+
+ microcks:
24+
+ # -- Enable Microcks provider.
25+
+ enabled: false
26+
+ auth:
27+
+ # -- Microcks API client ID.
28+
+ clientId: ""
29+
+ # -- Microcks API client secret.
30+
+ clientSecret: ""
31+
+ # -- Microcks API endpoint.
32+
+ endpoint: ""
33+
+ # -- Microcks API token.
34+
+ token: ""
35+
+ # -- Microcks API endpoint.
36+
+ endpoint: ""
37+
+ # -- Polling interval for Microcks API.
38+
+ pollInterval: 30
39+
+ # -- Polling timeout for Microcks API.
40+
+ pollTimeout: 5
41+
+ tls:
42+
+ # -- TLS CA
43+
+ ca: ""
44+
+ # -- TLS cert
45+
+ cert: ""
46+
+ # -- TLS insecure skip verify
47+
+ insecureSkipVerify: false
48+
+ # -- TLS key
49+
+ key: ""
50+
redis:
51+
# -- Enable Redis Cluster. Default: true.
52+
cluster: # @schema type:[boolean, null]
53+
```
54+
355
## 34.2.0 ![AppVersion: v3.3.2](https://img.shields.io/static/v1?label=AppVersion&message=v3.3.2&color=success&logo=) ![Kubernetes: >=1.22.0-0](https://img.shields.io/static/v1?label=Kubernetes&message=%3E%3D1.22.0-0&color=informational&logo=kubernetes) ![Helm: v3](https://img.shields.io/static/v1?label=Helm&message=v3&color=informational&logo=helm)
456

557
**Release date:** 2025-01-28
@@ -351,17 +403,17 @@ index be89b00..9b4379c 100644
351403
There are multiple breaking changes in this release:
352404

353405
1. The default port of `traefik` entrypoint has changed from `9000` to `8080`, just like the Traefik Proxy default port
354-
* You _may_ have to update probes accordingly (or set this port back to 9000)
406+
* You _may_ have to update probes accordingly (or set this port back to 9000)
355407
2. `publishedService` is enabled by default on Ingress provider
356-
* You _can_ disable it, if needed
408+
* You _can_ disable it, if needed
357409
3. The `POD_NAME` and `POD_NAMESPACE` environment variables are now set by default, without values.
358-
* It is no longer necessary to add them in values and so, it can be removed from user values.
410+
* It is no longer necessary to add them in values and so, it can be removed from user values.
359411
4. In _values_, **certResolvers** specific syntax has been reworked to align with Traefik Proxy syntax.
360-
* PR [#1214](https://github.com/traefik/traefik-helm-chart/pull/1214) contains a complete before / after example on how to update _values_
412+
* PR [#1214](https://github.com/traefik/traefik-helm-chart/pull/1214) contains a complete before / after example on how to update _values_
361413
5. Traefik Proxy 3.2 supports Gateway API v1.2 (standard channel)
362-
* It is recommended to check that other software using Gateway API on your cluster are compatible
363-
* There is a breaking change on CRD upgrade in this version, it _may_ do not work out of the box
364-
* See [release notes](https://github.com/kubernetes-sigs/gateway-api/releases/tag/v1.2.0) of gateway API v1.2 on how to upgrade their CRDs and avoid issues about invalid values on v1alpha2 version
414+
* It is recommended to check that other software using Gateway API on your cluster are compatible
415+
* There is a breaking change on CRD upgrade in this version, it _may_ do not work out of the box
416+
* See [release notes](https://github.com/kubernetes-sigs/gateway-api/releases/tag/v1.2.0) of gateway API v1.2 on how to upgrade their CRDs and avoid issues about invalid values on v1alpha2 version
365417

366418
The CRDs needs to be updated, as documented in the README.
367419

traefik/Chart.yaml

+6-5
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ apiVersion: v2
22
name: traefik
33
description: A Traefik based Kubernetes ingress controller
44
type: application
5-
version: 34.2.0
5+
version: 34.3.0
66
# renovate: image=traefik
77
appVersion: v3.3.3
88
kubeVersion: ">=1.22.0-0"
@@ -25,7 +25,8 @@ maintainers:
2525
icon: https://raw.githubusercontent.com/traefik/traefik/v2.3/docs/content/assets/img/traefik.logo.png
2626
annotations:
2727
artifacthub.io/changes: |
28-
- "fix: :bug: permanent redirect should be disableable"
29-
- "feat: :sparkles: add hub tracing capabilities"
30-
- "docs: 📚️ fix typo in Guidelines.md"
31-
- "chore(release): publish v34.2.0"
28+
- "fix(Traefik Hub): AIServices are available in API Gateway"
29+
- "fix(Traefik Hub): :bug: handle main and latest build"
30+
- "feat: :sparkles: add missing microcks provider for Hu"b
31+
- "feat(deps): update traefik docker tag to v3.3.3"
32+
- "chore: update CRDs to v1.14.1"

traefik/VALUES.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# traefik
22

3-
![Version: 34.2.0](https://img.shields.io/badge/Version-34.2.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: v3.3.3](https://img.shields.io/badge/AppVersion-v3.3.3-informational?style=flat-square)
3+
![Version: 34.3.0](https://img.shields.io/badge/Version-34.3.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: v3.3.3](https://img.shields.io/badge/AppVersion-v3.3.3-informational?style=flat-square)
44

55
A Traefik based Kubernetes ingress controller
66

0 commit comments

Comments
 (0)