From 5144643261c09b577c419cd26dbdca3787c340c5 Mon Sep 17 00:00:00 2001 From: Pascal Iske Date: Fri, 27 Oct 2023 06:27:38 +0200 Subject: [PATCH] refactor(traefik-errors): switch traefik api group from traefik.containo.us to traefik.io --- charts/traefik-errors/Chart.yaml | 6 ++++-- charts/traefik-errors/README.md | 2 +- charts/traefik-errors/templates/ingressroute.yaml | 2 +- charts/traefik-errors/templates/middleware.yaml | 2 +- 4 files changed, 7 insertions(+), 5 deletions(-) diff --git a/charts/traefik-errors/Chart.yaml b/charts/traefik-errors/Chart.yaml index 0da27197..a45dd3ba 100644 --- a/charts/traefik-errors/Chart.yaml +++ b/charts/traefik-errors/Chart.yaml @@ -3,7 +3,7 @@ apiVersion: v2 type: application name: traefik-errors description: A Helm chart for custom traefik error pages -version: 3.0.3 +version: 4.0.0 # renovate: image=ghcr.io/pascaliske/traefik-errors appVersion: "1.1.0" @@ -27,4 +27,6 @@ dependencies: annotations: artifacthub.io/changes: | - kind: removed - description: 'Remove values schema due to issues with flux variable substitution.' + description: 'Remove support for CRDs from "traefik.containo.us".' + - kind: added + description: 'Add support for CRDs from "traefik.io".' diff --git a/charts/traefik-errors/README.md b/charts/traefik-errors/README.md index babe8713..a314c94a 100644 --- a/charts/traefik-errors/README.md +++ b/charts/traefik-errors/README.md @@ -2,7 +2,7 @@ > A Helm chart for custom traefik error pages -[![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ](https://charts.pascaliske.dev/charts/traefik-errors/)[![Version: 3.0.3](https://img.shields.io/badge/Version-3.0.3-informational?style=flat-square) ](https://charts.pascaliske.dev/charts/traefik-errors/)[![AppVersion: 1.0.5](https://img.shields.io/badge/AppVersion-1.0.5-informational?style=flat-square) ](https://charts.pascaliske.dev/charts/traefik-errors/) +[![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ](https://charts.pascaliske.dev/charts/traefik-errors/)[![Version: 4.0.0](https://img.shields.io/badge/Version-4.0.0-informational?style=flat-square) ](https://charts.pascaliske.dev/charts/traefik-errors/)[![AppVersion: 1.1.0](https://img.shields.io/badge/AppVersion-1.1.0-informational?style=flat-square) ](https://charts.pascaliske.dev/charts/traefik-errors/) * * diff --git a/charts/traefik-errors/templates/ingressroute.yaml b/charts/traefik-errors/templates/ingressroute.yaml index b33c1540..54c14973 100644 --- a/charts/traefik-errors/templates/ingressroute.yaml +++ b/charts/traefik-errors/templates/ingressroute.yaml @@ -1,5 +1,5 @@ {{- if and .Values.ingressRoute.create .Values.service.enabled -}} -apiVersion: traefik.containo.us/v1alpha1 +apiVersion: traefik.io/v1alpha1 kind: IngressRoute metadata: name: {{ printf "%s-route" (include "traefik-errors.fullname" . ) }} diff --git a/charts/traefik-errors/templates/middleware.yaml b/charts/traefik-errors/templates/middleware.yaml index b9bc9e6d..8684d3c0 100644 --- a/charts/traefik-errors/templates/middleware.yaml +++ b/charts/traefik-errors/templates/middleware.yaml @@ -1,5 +1,5 @@ {{- if .Values.middleware.create -}} -apiVersion: traefik.containo.us/v1alpha1 +apiVersion: traefik.io/v1alpha1 kind: Middleware metadata: name: {{ default (include "traefik-errors.fullname" . ) .Values.middleware.name }}