diff --git a/.github/workflows/sync-docs.yaml b/.github/workflows/sync-docs.yaml index aae8617..709fbea 100644 --- a/.github/workflows/sync-docs.yaml +++ b/.github/workflows/sync-docs.yaml @@ -43,7 +43,7 @@ jobs: cp charts/homarr/README.md "$DEST/helm.md" sed -i '1s/# Homarr/# Helm/' "$DEST/helm.md" - + cd target-repo git config user.name "github-actions[bot]" git config user.email "github-actions[bot]@users.noreply.github.com" diff --git a/charts/homarr/Chart.yaml b/charts/homarr/Chart.yaml index ac4a246..63f47d2 100644 --- a/charts/homarr/Chart.yaml +++ b/charts/homarr/Chart.yaml @@ -3,7 +3,7 @@ name: homarr description: A Helm chart to deploy homarr for Kubernetes home: https://homarr-labs.github.io/charts/charts/homarr/ type: application -version: 8.10.0 +version: 8.11.1 # renovate datasource=docker depName=ghcr.io/homarr-labs/homarr appVersion: "v1.51.0" icon: https://raw.githubusercontent.com/homarr-labs/charts/refs/heads/main/charts/homarr/icon.svg @@ -21,8 +21,8 @@ annotations: fingerprint: 36F9A886ABA6AA4C1588B942E7EC1AA0EFD54840 url: https://homarr-labs.github.io/charts/pgp_keys.asc artifacthub.io/changes: |- - - kind: changed - description: Update ghcr.io/homarr-labs/homarr docker tag to v1.51.0 + - kind: fixed + description: change backend port from 8080 to 7575 artifacthub.io/links: |- - name: App Source url: https://github.com/homarr-labs/homarr diff --git a/charts/homarr/README.md b/charts/homarr/README.md index ab06d35..3481b96 100644 --- a/charts/homarr/README.md +++ b/charts/homarr/README.md @@ -2,7 +2,7 @@ homarr logo -![Version: 8.10.0](https://img.shields.io/badge/Version-8.10.0-informational?style=flat) +![Version: 8.11.0](https://img.shields.io/badge/Version-8.11.1-informational?style=flat) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat) ![AppVersion: v1.51.0](https://img.shields.io/badge/AppVersion-v1.51.0-informational?style=flat) @@ -418,11 +418,11 @@ All available values are listed on the [artifacthub](https://artifacthub.io/pack | envSecrets.dbEncryption.key | string | `"db-encryption-key"` | Secret key for SECRET_ENCRYPTION_KEY can be generated with `openssl rand -hex 32` | | fullnameOverride | string | `""` | Overrides chart's fullname | | 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" | -| 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 | +| 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 | | httproute.enabled | bool | `false` | Enable HTTPRoute | | httproute.hostnames | list | `["chart-example.local"]` | Hostnames this route matches (similar to ingress.hosts.host) | | 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`. | -| 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 | +| 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 | | httproute.rules[0].filters | list | `[]` | Optional filters for this rule (default: empty) | | httproute.rules[0].matches[0].path.type | string | `"PathPrefix"` | Path match type. One of: Exact, PathPrefix, RegularExpression | | httproute.rules[0].matches[0].path.value | string | `"/"` | Path value to match | diff --git a/charts/homarr/values.yaml b/charts/homarr/values.yaml index f326a15..7a2eeb1 100644 --- a/charts/homarr/values.yaml +++ b/charts/homarr/values.yaml @@ -173,7 +173,7 @@ livenessProbe: path: /api/health/live # -- The port on which the liveness check will be performed. This must be the same as the container port exposed by the application. port: 7575 - # -- Initial delay before readiness probe is executed. increase this value if the pod is slow to fully start. + # -- Initial delay before readiness probe is executed. increase this value if the pod is slow to fully start. readinessProbe: # -- Failure threshold for readiness probe - number of consecutive failures before pod is considered unready @@ -232,7 +232,7 @@ httproute: filters: [] backendRefs: - name: homarr - port: 8080 + port: 7575 # Ingress configuration ingress: