From 75afa2934af2d1d71378353bcc864c1e49463d49 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alfredo=20Espa=C3=B1a?= Date: Mon, 9 Oct 2023 15:27:35 -0600 Subject: [PATCH] Fix deprecated annotations message (#82) * Fix deprecated annotations message --- charts/terrakube/Chart.yaml | 2 +- charts/terrakube/values.yaml | 12 ++++-------- 2 files changed, 5 insertions(+), 9 deletions(-) diff --git a/charts/terrakube/Chart.yaml b/charts/terrakube/Chart.yaml index 8403ea3..cd3a89c 100644 --- a/charts/terrakube/Chart.yaml +++ b/charts/terrakube/Chart.yaml @@ -15,7 +15,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: 3.9.1 +version: 3.9.2 # 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/terrakube/values.yaml b/charts/terrakube/values.yaml index 2d345d4..fe3ec99 100644 --- a/charts/terrakube/values.yaml +++ b/charts/terrakube/values.yaml @@ -226,37 +226,33 @@ ingress: ui: enabled: true domain: "terrakube-ui.minikube.net" - path: "/(.*)" + path: "/" pathType: "Prefix" tlsSecretName: tls-secret-ui-terrakube annotations: - kubernetes.io/ingress.class: nginx nginx.ingress.kubernetes.io/use-regex: "true" api: enabled: true domain: "terrakube-api.minikube.net" - path: "/(.*)" + path: "/" pathType: "Prefix" tlsSecretName: tls-secret-api-terrakube annotations: - kubernetes.io/ingress.class: nginx nginx.ingress.kubernetes.io/use-regex: "true" nginx.ingress.kubernetes.io/configuration-snippet: "proxy_set_header Authorization $http_authorization;" registry: enabled: true domain: "terrakube-reg.minikube.net" - path: "/(.*)" + path: "/" pathType: "Prefix" tlsSecretName: tls-secret-reg-terrakube annotations: - kubernetes.io/ingress.class: nginx nginx.ingress.kubernetes.io/use-regex: "true" nginx.ingress.kubernetes.io/configuration-snippet: "proxy_set_header Authorization $http_authorization;" dex: enabled: true - path: "/dex/(.*)" + path: "/dex/" pathType: "Prefix" annotations: - kubernetes.io/ingress.class: nginx nginx.ingress.kubernetes.io/use-regex: "true" nginx.ingress.kubernetes.io/configuration-snippet: "proxy_set_header Authorization $http_authorization;"