diff --git a/charts/traefik-dashboard/Chart.yaml b/charts/traefik-dashboard/Chart.yaml index 30fb19a..5e4d40e 100644 --- a/charts/traefik-dashboard/Chart.yaml +++ b/charts/traefik-dashboard/Chart.yaml @@ -26,7 +26,7 @@ type: application # This is the chart version. This version number should be incremented each time you make changes # to the chart and its templates, including the app version. # Versions are expected to follow Semantic Versioning (https://semver.org/) -version: 1.0.0 +version: 2.0.0 # This is the version number of the application being deployed. This version number should be # incremented each time you make changes to the application. Versions are not expected to diff --git a/charts/traefik-dashboard/README.md b/charts/traefik-dashboard/README.md index 172e908..7d60385 100644 --- a/charts/traefik-dashboard/README.md +++ b/charts/traefik-dashboard/README.md @@ -1,6 +1,6 @@ # traefik-dashboard -![Version: 1.0.0](https://img.shields.io/badge/Version-1.0.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 1.0.0](https://img.shields.io/badge/AppVersion-1.0.0-informational?style=flat-square) +![Version: 2.0.0](https://img.shields.io/badge/Version-2.0.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 1.0.0](https://img.shields.io/badge/AppVersion-1.0.0-informational?style=flat-square) A Helm chart to expose the Traefik Dashboard diff --git a/charts/traefik-dashboard/templates/ingress.yaml b/charts/traefik-dashboard/templates/ingress.yaml index 7f022f5..5612004 100644 --- a/charts/traefik-dashboard/templates/ingress.yaml +++ b/charts/traefik-dashboard/templates/ingress.yaml @@ -1,4 +1,4 @@ -apiVersion: traefik.containo.us/v1alpha1 +apiVersion: traefik.io/v1alpha1 kind: IngressRoute metadata: name: {{ include "traefik-dashboard.fullname" . }} diff --git a/charts/traefik-helpers/Chart.yaml b/charts/traefik-helpers/Chart.yaml index ba98c6e..944b06f 100644 --- a/charts/traefik-helpers/Chart.yaml +++ b/charts/traefik-helpers/Chart.yaml @@ -28,7 +28,7 @@ type: application # This is the chart version. This version number should be incremented each time you make changes # to the chart and its templates, including the app version. # Versions are expected to follow Semantic Versioning (https://semver.org/) -version: 1.0.1 +version: 2.0.0 # This is the version number of the application being deployed. This version number should be # incremented each time you make changes to the application. Versions are not expected to diff --git a/charts/traefik-helpers/README.md b/charts/traefik-helpers/README.md index d3530c8..bb011e5 100644 --- a/charts/traefik-helpers/README.md +++ b/charts/traefik-helpers/README.md @@ -1,6 +1,6 @@ # traefik-helpers -![Version: 1.0.1](https://img.shields.io/badge/Version-1.0.1-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 1.0.0](https://img.shields.io/badge/AppVersion-1.0.0-informational?style=flat-square) +![Version: 2.0.0](https://img.shields.io/badge/Version-2.0.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 1.0.0](https://img.shields.io/badge/AppVersion-1.0.0-informational?style=flat-square) A Helm chart with useful Traefik middlewares, helpers and default configuration diff --git a/charts/traefik-helpers/templates/ingress-http-redirects.yaml b/charts/traefik-helpers/templates/ingress-http-redirects.yaml index cf9797e..b4757d0 100644 --- a/charts/traefik-helpers/templates/ingress-http-redirects.yaml +++ b/charts/traefik-helpers/templates/ingress-http-redirects.yaml @@ -1,5 +1,5 @@ {{- if .Values.ingress.httpRedirects.enabled }} -apiVersion: traefik.containo.us/v1alpha1 +apiVersion: traefik.io/v1alpha1 kind: IngressRoute metadata: name: {{ include "traefik-helpers.fullname" . }}-http-redirects diff --git a/charts/traefik-helpers/templates/ingress-https-redirects.yaml b/charts/traefik-helpers/templates/ingress-https-redirects.yaml index fd573c8..d92d5f3 100644 --- a/charts/traefik-helpers/templates/ingress-https-redirects.yaml +++ b/charts/traefik-helpers/templates/ingress-https-redirects.yaml @@ -1,5 +1,5 @@ {{- if .Values.ingress.httpsRedirects.enabled }} -apiVersion: traefik.containo.us/v1alpha1 +apiVersion: traefik.io/v1alpha1 kind: IngressRoute metadata: name: {{ include "traefik-helpers.fullname" . }}-https-redirects diff --git a/charts/traefik-helpers/templates/middleware-compress.yaml b/charts/traefik-helpers/templates/middleware-compress.yaml index 3966f0c..44ade74 100644 --- a/charts/traefik-helpers/templates/middleware-compress.yaml +++ b/charts/traefik-helpers/templates/middleware-compress.yaml @@ -1,5 +1,5 @@ {{- if .Values.middlewares.compress.enabled }} -apiVersion: traefik.containo.us/v1alpha1 +apiVersion: traefik.io/v1alpha1 kind: Middleware metadata: name: {{ include "traefik-helpers.fullname" . }}-compress diff --git a/charts/traefik-helpers/templates/middleware-ip-whitelist.yaml b/charts/traefik-helpers/templates/middleware-ip-whitelist.yaml index 7fa90a5..0b231f4 100644 --- a/charts/traefik-helpers/templates/middleware-ip-whitelist.yaml +++ b/charts/traefik-helpers/templates/middleware-ip-whitelist.yaml @@ -1,5 +1,5 @@ {{- if .Values.middlewares.ipWhitelist.enabled }} -apiVersion: traefik.containo.us/v1alpha1 +apiVersion: traefik.io/v1alpha1 kind: Middleware metadata: name: {{ include "traefik-helpers.fullname" . }}-ip-whitelist diff --git a/charts/traefik-helpers/templates/middleware-rate-limit.yaml b/charts/traefik-helpers/templates/middleware-rate-limit.yaml index 203cdcf..a6e559c 100644 --- a/charts/traefik-helpers/templates/middleware-rate-limit.yaml +++ b/charts/traefik-helpers/templates/middleware-rate-limit.yaml @@ -1,5 +1,5 @@ {{- if .Values.middlewares.rateLimit.enabled }} -apiVersion: traefik.containo.us/v1alpha1 +apiVersion: traefik.io/v1alpha1 kind: Middleware metadata: name: {{ include "traefik-helpers.fullname" . }}-rate-limit diff --git a/charts/traefik-helpers/templates/middleware-redirect-to-non-www-https.yaml b/charts/traefik-helpers/templates/middleware-redirect-to-non-www-https.yaml index 7eed065..1b31468 100644 --- a/charts/traefik-helpers/templates/middleware-redirect-to-non-www-https.yaml +++ b/charts/traefik-helpers/templates/middleware-redirect-to-non-www-https.yaml @@ -1,5 +1,5 @@ {{- if or .Values.ingress.httpRedirects.enabled .Values.ingress.httpsRedirects.enabled }} -apiVersion: traefik.containo.us/v1alpha1 +apiVersion: traefik.io/v1alpha1 kind: Middleware metadata: name: {{ include "traefik-helpers.fullname" . }}-redirect-to-non-www-https diff --git a/charts/traefik-helpers/templates/middleware-secure-headers.yaml b/charts/traefik-helpers/templates/middleware-secure-headers.yaml index 9dea760..716e7fd 100644 --- a/charts/traefik-helpers/templates/middleware-secure-headers.yaml +++ b/charts/traefik-helpers/templates/middleware-secure-headers.yaml @@ -1,5 +1,5 @@ {{- if .Values.middlewares.secureHeaders.enabled }} -apiVersion: traefik.containo.us/v1alpha1 +apiVersion: traefik.io/v1alpha1 kind: Middleware metadata: name: {{ include "traefik-helpers.fullname" . }}-secure-headers diff --git a/charts/traefik-helpers/templates/tls-option.yaml b/charts/traefik-helpers/templates/tls-option.yaml index a5a2248..530883e 100644 --- a/charts/traefik-helpers/templates/tls-option.yaml +++ b/charts/traefik-helpers/templates/tls-option.yaml @@ -1,5 +1,5 @@ {{- if .Values.tlsOption.enabled }} -apiVersion: traefik.containo.us/v1alpha1 +apiVersion: traefik.io/v1alpha1 kind: TLSOption metadata: name: {{ include "traefik-helpers.fullname" . }}-tls13 diff --git a/charts/traefik-redirect/Chart.yaml b/charts/traefik-redirect/Chart.yaml index 45e3cbb..82fe11b 100644 --- a/charts/traefik-redirect/Chart.yaml +++ b/charts/traefik-redirect/Chart.yaml @@ -26,7 +26,7 @@ type: application # This is the chart version. This version number should be incremented each time you make changes # to the chart and its templates, including the app version. # Versions are expected to follow Semantic Versioning (https://semver.org/) -version: 1.1.0 +version: 2.0.0 # This is the version number of the application being deployed. This version number should be # incremented each time you make changes to the application. Versions are not expected to diff --git a/charts/traefik-redirect/README.md b/charts/traefik-redirect/README.md index 0903045..f43197f 100644 --- a/charts/traefik-redirect/README.md +++ b/charts/traefik-redirect/README.md @@ -1,6 +1,6 @@ # traefik-redirect -![Version: 1.1.0](https://img.shields.io/badge/Version-1.1.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 1.0.0](https://img.shields.io/badge/AppVersion-1.0.0-informational?style=flat-square) +![Version: 2.0.0](https://img.shields.io/badge/Version-2.0.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 1.0.0](https://img.shields.io/badge/AppVersion-1.0.0-informational?style=flat-square) A Helm chart to create a simple http(s) redirect within Traefik diff --git a/charts/traefik-redirect/templates/ingress.yaml b/charts/traefik-redirect/templates/ingress.yaml index ceceada..42c2540 100644 --- a/charts/traefik-redirect/templates/ingress.yaml +++ b/charts/traefik-redirect/templates/ingress.yaml @@ -1,4 +1,4 @@ -apiVersion: traefik.containo.us/v1alpha1 +apiVersion: traefik.io/v1alpha1 kind: IngressRoute metadata: name: {{ include "traefik-redirect.fullname" . }} diff --git a/charts/traefik-redirect/templates/middleware.yaml b/charts/traefik-redirect/templates/middleware.yaml index e93a5ed..b3308f5 100644 --- a/charts/traefik-redirect/templates/middleware.yaml +++ b/charts/traefik-redirect/templates/middleware.yaml @@ -1,4 +1,4 @@ -apiVersion: traefik.containo.us/v1alpha1 +apiVersion: traefik.io/v1alpha1 kind: Middleware metadata: name: {{ include "traefik-redirect.fullname" . }}