Skip to content

Commit

Permalink
fix: hostname example for ingress
Browse files Browse the repository at this point in the history
  • Loading branch information
Tchoupinax authored and bameda committed Sep 9, 2024
1 parent 9153772 commit 5b75242
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 2 additions & 0 deletions charts/penpot/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions charts/penpot/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 |

Expand Down
2 changes: 1 addition & 1 deletion charts/penpot/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit 5b75242

Please sign in to comment.