Skip to content

Commit

Permalink
chore(release): 🚀 publish v29.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
darkweaver87 authored Jul 5, 2024
1 parent 2eb640a commit 0153a52
Show file tree
Hide file tree
Showing 9 changed files with 319 additions and 46 deletions.
322 changes: 293 additions & 29 deletions traefik/Changelog.md

Large diffs are not rendered by default.

27 changes: 18 additions & 9 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: 28.3.0
version: 29.0.0
# renovate: image=traefik
appVersion: v3.0.4
kubeVersion: ">=1.22.0-0"
Expand All @@ -25,11 +25,20 @@ maintainers:
icon: https://raw.githubusercontent.com/traefik/traefik/v2.3/docs/content/assets/img/traefik.logo.png
annotations:
artifacthub.io/changes: |
- "fix: 🐛 namespaced rbac when kubernetesIngress provider is disabled"
- "fix: 🐛 add divisor: '1' to GOMAXPROCS and GOMEMLIMIT"
- "fix(security): 🐛 🔒️ mount service account token on pod level"
- "fix(Traefik Hub): remove obsolete CRD"
- "fix(Traefik Hub): remove namespace in mutating webhook"
- "feat: allow setting permanent on redirectTo"
- "chore(release): publish v28.3.0"
- "chore(deps): update traefik docker tag to v3.0.2"
- "fix: 🐛 improve error message on additional service without ports"
- "fix: allow multiples values in the `secretResourceNames` slice"
- "fix(rbac)!: nodes API permissions for Traefik v3.1+"
- "fix(dashboard): Only set ingressClass annotation when kubernetesCRD provider is listening for it"
- "fix!: prometheus operator settings"
- "feat: ✨ update CRDs & RBAC for Traefik Proxy"
- "feat: ✨ migrate to endpointslices rbac"
- "feat: allow to set hostAliases for traefik pod"
- "feat(providers): add nativeLBByDefault support"
- "feat(providers)!: improve kubernetesGateway and Gateway API support"
- "feat(dashboard)!: dashboard `IngressRoute` should be disabled by default"
- "docs: fix typos and broken link"
- "chore: update CRDs to v1.5.0"
- "chore: update CRDs to v1.4.0"
- "chore(release): publish v29.0.0"
- "chore(deps): update traefik docker tag to v3.0.4"
- "chore(deps): update traefik docker tag to v3.0.3"
2 changes: 1 addition & 1 deletion traefik/VALUES.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# traefik

![Version: 28.3.0](https://img.shields.io/badge/Version-28.3.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: v3.0.4](https://img.shields.io/badge/AppVersion-v3.0.4-informational?style=flat-square)
![Version: 29.0.0](https://img.shields.io/badge/Version-29.0.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: v3.0.4](https://img.shields.io/badge/AppVersion-v3.0.4-informational?style=flat-square)

A Traefik based Kubernetes ingress controller

Expand Down
2 changes: 1 addition & 1 deletion traefik/templates/gateway.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{{- if and .Values.gateway.enabled .Values.providers.kubernetesGateway.enabled }}
{{- if and (.Values.gateway).enabled (.Values.providers.kubernetesGateway).enabled }}
---
apiVersion: gateway.networking.k8s.io/v1
kind: Gateway
Expand Down
2 changes: 1 addition & 1 deletion traefik/templates/gatewayclass.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{{- if and .Values.gatewayClass.enabled .Values.providers.kubernetesGateway.enabled }}
{{- if and (.Values.gatewayClass).enabled (.Values.providers.kubernetesGateway).enabled }}
---
apiVersion: gateway.networking.k8s.io/v1
kind: GatewayClass
Expand Down
2 changes: 1 addition & 1 deletion traefik/templates/rbac/clusterrole.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ rules:
- get
- list
- watch
{{- if .Values.providers.kubernetesGateway.enabled }}
{{- if (.Values.providers.kubernetesGateway).enabled }}
- apiGroups:
- ""
resources:
Expand Down
4 changes: 2 additions & 2 deletions traefik/templates/rbac/role.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{{- $ingressNamespaces := concat (include "traefik.namespace" . | list) .Values.providers.kubernetesIngress.namespaces -}}
{{- $CRDNamespaces := concat (include "traefik.namespace" . | list) .Values.providers.kubernetesCRD.namespaces -}}
{{- $gatewayNamespaces := concat (include "traefik.namespace" . | list) .Values.providers.kubernetesGateway.namespaces -}}
{{- $gatewayNamespaces := concat (include "traefik.namespace" . | list) ((.Values.providers.kubernetesGateway).namespaces) -}}
{{- $allNamespaces := sortAlpha (uniq (concat $ingressNamespaces $CRDNamespaces $gatewayNamespaces)) -}}

{{- if and .Values.rbac.enabled .Values.rbac.namespaced -}}
Expand Down Expand Up @@ -109,7 +109,7 @@ rules:
verbs:
- use
{{- end -}}
{{- if (and (has . $gatewayNamespaces) $.Values.providers.kubernetesGateway.enabled) }}
{{- if (and (has . $gatewayNamespaces) ($.Values.providers.kubernetesGateway).enabled) }}
- apiGroups:
- ""
resources:
Expand Down
2 changes: 1 addition & 1 deletion traefik/templates/rbac/rolebinding.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{{- $ingressNamespaces := concat (include "traefik.namespace" . | list) .Values.providers.kubernetesIngress.namespaces -}}
{{- $CRDNamespaces := concat (include "traefik.namespace" . | list) .Values.providers.kubernetesCRD.namespaces -}}
{{- $gatewayNamespaces := concat (include "traefik.namespace" . | list) .Values.providers.kubernetesGateway.namespaces -}}
{{- $gatewayNamespaces := concat (include "traefik.namespace" . | list) ((.Values.providers.kubernetesGateway).namespaces) -}}
{{- $allNamespaces := sortAlpha (uniq (concat $ingressNamespaces $CRDNamespaces $gatewayNamespaces)) -}}

{{- if and .Values.rbac.enabled .Values.rbac.namespaced }}
Expand Down
2 changes: 1 addition & 1 deletion traefik/templates/requirements.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@
{{- fail "ERROR: traefik-hub image is required when enabling Traefik Hub" -}}
{{- end }}

{{- if and .Values.providers.kubernetesGateway.enabled (and (semverCompare "<3.1.0-rc3" $version) (not .Values.experimental.kubernetesGateway.enabled)) }}
{{- if and (.Values.providers.kubernetesGateway).enabled (and (semverCompare "<3.1.0-rc3" $version) (not .Values.experimental.kubernetesGateway.enabled)) }}
{{- fail "ERROR: Before traefik v3.1.0-rc3, kubernetesGateway is experimental. Enable it by setting experimental.kubernetesGateway.enabled to true" -}}
{{- end }}

0 comments on commit 0153a52

Please sign in to comment.