Skip to content

Commit

Permalink
chore(release): πŸš€ publish 32.0.0-rc1
Browse files Browse the repository at this point in the history
  • Loading branch information
mloiseleur committed Sep 20, 2024
1 parent 87d206e commit c148fb8
Show file tree
Hide file tree
Showing 2 changed files with 82 additions and 4 deletions.
79 changes: 79 additions & 0 deletions traefik/Changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,84 @@
# Change Log

## 32.0.0-rc1 ![AppVersion: v3.1.4](https://img.shields.io/static/v1?label=AppVersion&message=v3.1.4&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)

**Release date:** 2024-09-20

* feat(Traefik Hub): add APIPlans and APIBundles CRDs
* chore(release): πŸš€ publish 32.0.0-rc1

### Default value changes

```diff
diff --git a/traefik/values.yaml b/traefik/values.yaml
index d5173dc..51dec67 100644
--- a/traefik/values.yaml
+++ b/traefik/values.yaml
@@ -911,35 +911,34 @@ hub:
# -- Certificate of the WebHook admission server. Default: "hub-agent-cert".
secretName: ""

- ratelimit:
- redis:
- # -- Enable Redis Cluster. Default: true.
- cluster: # @schema type:[boolean, null]
- # -- Database used to store information. Default: "0".
- database: # @schema type:[string, null]
- # -- Endpoints of the Redis instances to connect to. Default: "".
- endpoints: ""
- # -- The username to use when connecting to Redis endpoints. Default: "".
+ redis:
+ # -- Enable Redis Cluster. Default: true.
+ cluster: # @schema type:[boolean, null]
+ # -- Database used to store information. Default: "0".
+ database: # @schema type:[string, null]
+ # -- Endpoints of the Redis instances to connect to. Default: "".
+ endpoints: ""
+ # -- The username to use when connecting to Redis endpoints. Default: "".
+ username: ""
+ # -- The password to use when connecting to Redis endpoints. Default: "".
+ password: ""
+ sentinel:
+ # -- Name of the set of main nodes to use for main selection. Required when using Sentinel. Default: "".
+ masterset: ""
+ # -- Username to use for sentinel authentication (can be different from endpoint username). Default: "".
username: ""
- # -- The password to use when connecting to Redis endpoints. Default: "".
+ # -- Password to use for sentinel authentication (can be different from endpoint password). Default: "".
password: ""
- sentinel:
- # -- Name of the set of main nodes to use for main selection. Required when using Sentinel. Default: "".
- masterset: ""
- # -- Username to use for sentinel authentication (can be different from endpoint username). Default: "".
- username: ""
- # -- Password to use for sentinel authentication (can be different from endpoint password). Default: "".
- password: ""
- # -- Timeout applied on connection with redis. Default: "0s".
- timeout: ""
- tls:
- # -- Path to the certificate authority used for the secured connection.
- ca: ""
- # -- Path to the public certificate used for the secure connection.
- cert: ""
- # -- Path to the private key used for the secure connection.
- key: ""
- # -- When insecureSkipVerify is set to true, the TLS connection accepts any certificate presented by the server. Default: false.
- insecureSkipVerify: false
+ # -- Timeout applied on connection with redis. Default: "0s".
+ timeout: ""
+ tls:
+ # -- Path to the certificate authority used for the secured connection.
+ ca: ""
+ # -- Path to the public certificate used for the secure connection.
+ cert: ""
+ # -- Path to the private key used for the secure connection.
+ key: ""
+ # -- When insecureSkipVerify is set to true, the TLS connection accepts any certificate presented by the server. Default: false.
+ insecureSkipVerify: false
# Enable export of errors logs to the platform. Default: true.
sendlogs: # @schema type:[boolean, null]
```

## 31.1.1 ![AppVersion: v3.1.4](https://img.shields.io/static/v1?label=AppVersion&message=v3.1.4&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)

**Release date:** 2024-09-20
Expand Down
7 changes: 3 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: 31.1.1
version: 32.0.0-rc1
# renovate: image=traefik
appVersion: v3.1.4
kubeVersion: ">=1.22.0-0"
Expand All @@ -25,6 +25,5 @@ maintainers:
icon: https://raw.githubusercontent.com/traefik/traefik/v2.3/docs/content/assets/img/traefik.logo.png
annotations:
artifacthub.io/changes: |
- "fix: πŸ› updateStrategy behavior"
- "feat(deps): update traefik docker tag to v3.1.4"
- "chore(release): πŸš€ publish v31.1.1"
- "feat(Traefik Hub): add APIPlans and APIBundles CRDs"
- "chore(release): πŸš€ publish 32.0.0-rc1"

0 comments on commit c148fb8

Please sign in to comment.