Skip to content

Commit 7d9a520

Browse files
fix: Change HTTPRoute default port from 8080 to 7575 (#270)
1 parent d95c40b commit 7d9a520

4 files changed

Lines changed: 9 additions & 9 deletions

File tree

charts/homarr/Chart.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: homarr
33
description: A Helm chart to deploy homarr for Kubernetes
44
home: https://homarr-labs.github.io/charts/charts/homarr/
55
type: application
6-
version: 8.22.0
6+
version: 8.22.1
77
# renovate datasource=docker depName=ghcr.io/homarr-labs/homarr
88
appVersion: "v1.70.0"
99
icon: https://raw.githubusercontent.com/homarr-labs/charts/refs/heads/main/charts/homarr/icon.svg
@@ -21,8 +21,8 @@ annotations:
2121
fingerprint: 36F9A886ABA6AA4C1588B942E7EC1AA0EFD54840
2222
url: https://homarr-labs.github.io/charts/pgp_keys.asc
2323
artifacthub.io/changes: |-
24-
- kind: changed
25-
description: Update ghcr.io/homarr-labs/homarr docker tag to v1.70.0
24+
- kind: fixed
25+
description: Changed default HTTPRoute backendRefs port to 7575
2626
artifacthub.io/links: |-
2727
- name: App Source
2828
url: https://github.com/homarr-labs/homarr

charts/homarr/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<img src="https://raw.githubusercontent.com/homarr-labs/charts/refs/heads/main/charts/homarr/icon.svg" align="right" width="92" alt="homarr logo">
44

5-
![Version: 8.22.0](https://img.shields.io/badge/Version-8.22.0-informational?style=flat)
5+
![Version: 8.22.1](https://img.shields.io/badge/Version-8.22.1-informational?style=flat)
66
![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat)
77
![AppVersion: v1.70.0](https://img.shields.io/badge/AppVersion-v1.70.0-informational?style=flat)
88

@@ -259,7 +259,7 @@ httproute:
259259
value: /
260260
backendRefs:
261261
- name: homarr
262-
port: 8080
262+
port: 7575
263263
````
264264
</details>
265265

@@ -419,11 +419,11 @@ All available values are listed on the [artifacthub](https://artifacthub.io/pack
419419
| envSecrets.dbEncryption.key | string | `"db-encryption-key"` | Secret key for SECRET_ENCRYPTION_KEY can be generated with `openssl rand -hex 32` |
420420
| fullnameOverride | string | `""` | Overrides chart's fullname |
421421
| hostAliases | list | `[]` | Add static entries to /etc/hosts in the Pod. This is useful in the following cases: - You are running in a dual-stack cluster (IPv4 + IPv6) and want to force usage of IPv4 for specific hostnames - Your application is having DNS resolution issues or IPv6 preference issues - You need to override or simulate DNS entries without changing global DNS - You are running in an air-gapped or isolated environment without external DNS Example: hostAliases: - ip: "192.168.1.10" hostnames: - "example.com" - "example.internal" |
422-
| httproute | object | `{"enabled":false,"hostnames":["chart-example.local"],"parentRefs":[{"name":"my-gateway","namespace":"default"}],"rules":[{"backendRefs":[{"name":"homarr","port":8080}],"filters":[],"matches":[{"path":{"type":"PathPrefix","value":"/"}}]}]}` | Gateway API HTTPRoute configuration |
422+
| httproute | object | `{"enabled":false,"hostnames":["chart-example.local"],"parentRefs":[{"name":"my-gateway","namespace":"default"}],"rules":[{"backendRefs":[{"name":"homarr","port":7575}],"filters":[],"matches":[{"path":{"type":"PathPrefix","value":"/"}}]}]}` | Gateway API HTTPRoute configuration |
423423
| httproute.enabled | bool | `false` | Enable HTTPRoute |
424424
| httproute.hostnames | list | `["chart-example.local"]` | Hostnames this route matches (similar to ingress.hosts.host) |
425425
| httproute.parentRefs | list | `[{"name":"my-gateway","namespace":"default"}]` | References to the parent Gateway(s) this route attaches to. Each item must include at least a `name`, and optionally a `namespace`. |
426-
| httproute.rules | list | `[{"backendRefs":[{"name":"homarr","port":8080}],"filters":[],"matches":[{"path":{"type":"PathPrefix","value":"/"}}]}]` | List of routing rules. Each rule can include: - matches: path/header/query matching - filters: optional transformations (redirects, header modifications, etc.) - backendRefs: one or more Kubernetes Services to forward traffic to |
426+
| httproute.rules | list | `[{"backendRefs":[{"name":"homarr","port":7575}],"filters":[],"matches":[{"path":{"type":"PathPrefix","value":"/"}}]}]` | List of routing rules. Each rule can include: - matches: path/header/query matching - filters: optional transformations (redirects, header modifications, etc.) - backendRefs: one or more Kubernetes Services to forward traffic to |
427427
| httproute.rules[0].filters | list | `[]` | Optional filters for this rule (default: empty) |
428428
| httproute.rules[0].matches[0].path.type | string | `"PathPrefix"` | Path match type. One of: Exact, PathPrefix, RegularExpression |
429429
| httproute.rules[0].matches[0].path.value | string | `"/"` | Path value to match |

charts/homarr/README_CONFIG.md.gotmpl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -199,7 +199,7 @@ httproute:
199199
value: /
200200
backendRefs:
201201
- name: homarr
202-
port: 8080
202+
port: 7575
203203
````
204204
</details>
205205

charts/homarr/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -234,7 +234,7 @@ httproute:
234234
filters: []
235235
backendRefs:
236236
- name: homarr
237-
port: 8080
237+
port: 7575
238238

239239
# Ingress configuration
240240
ingress:

0 commit comments

Comments
 (0)