mirror of
https://github.com/penpot/penpot-helm.git
synced 2024-12-21 21:23:04 -05:00
fix: hostname example for ingress
This commit is contained in:
parent
9153772912
commit
5b7524268d
3 changed files with 5 additions and 3 deletions
|
@ -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
|
||||
|
|
|
@ -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 |
|
||||
|
||||
|
|
|
@ -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:
|
||||
|
|
Loading…
Reference in a new issue