diff --git a/charts/tinyauth/Chart.yaml b/charts/tinyauth/Chart.yaml index 0035d0b..4c0767b 100644 --- a/charts/tinyauth/Chart.yaml +++ b/charts/tinyauth/Chart.yaml @@ -15,7 +15,7 @@ type: application # This is the chart version. This version number should be incremented each time you make changes # to the chart and its templates, including the app version. # Versions are expected to follow Semantic Versioning (https://semver.org/) -version: 2.0.4 +version: 2.0.5 # This is the version number of the application being deployed. This version number should be # incremented each time you make changes to the application. Versions are not expected to diff --git a/charts/tinyauth/README.md b/charts/tinyauth/README.md index f7a4e62..664062b 100644 --- a/charts/tinyauth/README.md +++ b/charts/tinyauth/README.md @@ -1,6 +1,6 @@ # tinyauth -![Version: 2.0.4](https://img.shields.io/badge/Version-2.0.4-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: v5.0.4](https://img.shields.io/badge/AppVersion-v5.0.4-informational?style=flat-square) +![Version: 2.0.5](https://img.shields.io/badge/Version-2.0.5-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: v5.0.4](https://img.shields.io/badge/AppVersion-v5.0.4-informational?style=flat-square) The tiniest authentication and authorization server you have ever seen. @@ -21,7 +21,7 @@ The tiniest authentication and authorization server you have ever seen. | httpRoute.enabled | bool | `false` | | | httpRoute.hostnames[0] | string | `"chart-example.local"` | | | httpRoute.parentRefs[0].name | string | `"my-gateway"` | | -| httpRoute.rules[0].matches[0].path.type | string | `"Prefix"` | | +| httpRoute.rules[0].matches[0].path.type | string | `"PathPrefix"` | | | httpRoute.rules[0].matches[0].path.value | string | `"/"` | | | image.pullPolicy | string | `"IfNotPresent"` | | | image.repository | string | `"ghcr.io/steveiliop56/tinyauth"` | | diff --git a/charts/tinyauth/values.schema.json b/charts/tinyauth/values.schema.json index 142cb21..88e1c73 100644 --- a/charts/tinyauth/values.schema.json +++ b/charts/tinyauth/values.schema.json @@ -88,7 +88,7 @@ "matches": [ { "path": { - "type": "Prefix", + "type": "PathPrefix", "value": "/" } } diff --git a/charts/tinyauth/values.yaml b/charts/tinyauth/values.yaml index f0d1bcc..213edf3 100644 --- a/charts/tinyauth/values.yaml +++ b/charts/tinyauth/values.yaml @@ -267,10 +267,10 @@ httpRoute: - name: my-gateway hostnames: # @schema default: ["chart-example.local"] - chart-example.local - rules: # @schema default: [{"matches": [{"path": {"type": "Prefix", "value": "/"}}]}] + rules: # @schema default: [{"matches": [{"path": {"type": "PathPrefix", "value": "/"}}]}] - matches: - path: - type: Prefix + type: PathPrefix value: / # Additional environment variables for the container