From 19fb1dc5cca6891edf2dd361baf3332db2001354 Mon Sep 17 00:00:00 2001 From: Rafael Dantas Justo Date: Tue, 23 Jul 2024 14:45:54 +0300 Subject: [PATCH] Docs: Outdated ingress property The `ingressClass` property is outdated and should be `ingressClassName` now: https://github.com/loft-sh/component-chart/blob/e974dae5470e5dbb873e799db0b7f265f2f2780f/templates/ingress.yaml#L78-L80 No default values are defined for it: https://github.com/loft-sh/component-chart/blob/e974dae5470e5dbb873e799db0b7f265f2f2780f/values.yaml#L19-L24 --- docs/pages/configuration/ingress.mdx | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/pages/configuration/ingress.mdx b/docs/pages/configuration/ingress.mdx index 0d3cdee..98c3346 100644 --- a/docs/pages/configuration/ingress.mdx +++ b/docs/pages/configuration/ingress.mdx @@ -176,12 +176,12 @@ ingress: - host: my-static-host2.tld ``` -## `ingressClass` -The `ingressClass` option expects a string with a Kubernetes ingress class used for a cert-manager annotation. +## `ingressClassName` +The `ingressClassName` option expects a string with a Kubernetes ingress class used for a cert-manager annotation. -#### Default Value For `ingressClass` +#### Default Value For `ingressClassName` ```yaml -ingressClass: nginx +ingressClassName: '' ``` #### Example: Custom Ingress Class @@ -192,7 +192,7 @@ service: ports: - port: 3000 ingress: - ingressClass: traefik + ingressClassName: traefik tls: true rules: - host: my-static-host.tld