mirror of
https://github.com/penpot/penpot-helm.git
synced 2024-12-22 05:32:59 -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: |
|
artifacthub.io/changes: |
|
||||||
- kind: changed
|
- kind: changed
|
||||||
description: Imporve documentation.
|
description: Imporve documentation.
|
||||||
|
- kind: fixed
|
||||||
|
description: hostname example for ingress (by @Tchoupinax).
|
||||||
dependencies:
|
dependencies:
|
||||||
- name: postgresql
|
- name: postgresql
|
||||||
version: 15.x.x # appVersion >= 16.2.0
|
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.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.className | string | `""` | The Ingress className. |
|
||||||
| ingress.enabled | bool | `false` | Enable (frontend) Ingress Controller. |
|
| 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 | list | `["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[0] | string | `"penpot.example.com"` | The default external hostname to access to the penpot app. |
|
||||||
| ingress.path | string | `"/"` | Root path for every hosts. |
|
| 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 |
|
| 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:
|
hosts:
|
||||||
# -- The default external hostname to access to the penpot app.
|
# -- The default external hostname to access to the penpot app.
|
||||||
# @section -- Ingress parameters
|
# @section -- Ingress parameters
|
||||||
- host: penpot.example.com
|
- "penpot.example.com"
|
||||||
# -- Array style TLS secrets for the (frontend) ingress crontroller.
|
# -- Array style TLS secrets for the (frontend) ingress crontroller.
|
||||||
# E.g.
|
# E.g.
|
||||||
# tls:
|
# tls:
|
||||||
|
|
Loading…
Reference in a new issue