From 5b7524268d007b69891688bf8290344f9d32a72f Mon Sep 17 00:00:00 2001 From: Tchoupinax Date: Tue, 13 Aug 2024 07:52:46 +0200 Subject: [PATCH] fix: hostname example for ingress --- charts/penpot/Chart.yaml | 2 ++ charts/penpot/README.md | 4 ++-- charts/penpot/values.yaml | 2 +- 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/charts/penpot/Chart.yaml b/charts/penpot/Chart.yaml index 5dc6a60..739eec2 100644 --- a/charts/penpot/Chart.yaml +++ b/charts/penpot/Chart.yaml @@ -41,6 +41,8 @@ annotations: artifacthub.io/changes: | - kind: changed description: Imporve documentation. + - kind: fixed + description: hostname example for ingress (by @Tchoupinax). dependencies: - name: postgresql version: 15.x.x # appVersion >= 16.2.0 diff --git a/charts/penpot/README.md b/charts/penpot/README.md index 4830d4e..e44e234 100644 --- a/charts/penpot/README.md +++ b/charts/penpot/README.md @@ -234,8 +234,8 @@ helm install my-release -f values.yaml penpot/penpot | ingress.annotations | object | `{}` | Mapped annotations for the ingress crontroller. E.g. annotations: kubernetes.io/ingress.class: nginx kubernetes.io/tls-acme: "true" | | ingress.className | string | `""` | The Ingress className. | | ingress.enabled | bool | `false` | Enable (frontend) Ingress Controller. | -| ingress.hosts | list | `[{"host":"penpot.example.com"}]` | Array style hosts for the (frontend) ingress crontroller. | -| ingress.hosts[0] | object | `{"host":"penpot.example.com"}` | The default external hostname to access to the penpot app. | +| ingress.hosts | list | `["penpot.example.com"]` | Array style hosts for the (frontend) ingress crontroller. | +| ingress.hosts[0] | string | `"penpot.example.com"` | The default external hostname to access to the penpot app. | | ingress.path | string | `"/"` | Root path for every hosts. | | ingress.tls | list | `[]` | Array style TLS secrets for the (frontend) ingress crontroller. E.g. tls: - secretName: penpot.example.com-tls hosts: - penpot.example.com | diff --git a/charts/penpot/values.yaml b/charts/penpot/values.yaml index 45771a6..4bd5d67 100644 --- a/charts/penpot/values.yaml +++ b/charts/penpot/values.yaml @@ -553,7 +553,7 @@ ingress: hosts: # -- The default external hostname to access to the penpot app. # @section -- Ingress parameters - - host: penpot.example.com + - "penpot.example.com" # -- Array style TLS secrets for the (frontend) ingress crontroller. # E.g. # tls: