Skip to content

Commit c3a8039

Browse files
authored
Merge pull request #14 from steveiliop56/BinaryMan32-httproute-matches-pathprefix
Binary man32 httproute matches pathprefix
2 parents 5bdbcc7 + 8a74709 commit c3a8039

4 files changed

Lines changed: 6 additions & 6 deletions

File tree

charts/tinyauth/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ type: application
1515
# This is the chart version. This version number should be incremented each time you make changes
1616
# to the chart and its templates, including the app version.
1717
# Versions are expected to follow Semantic Versioning (https://semver.org/)
18-
version: 2.0.4
18+
version: 2.0.5
1919

2020
# This is the version number of the application being deployed. This version number should be
2121
# incremented each time you make changes to the application. Versions are not expected to

charts/tinyauth/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# tinyauth
22

3-
![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)
3+
![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)
44

55
The tiniest authentication and authorization server you have ever seen.
66

@@ -21,7 +21,7 @@ The tiniest authentication and authorization server you have ever seen.
2121
| httpRoute.enabled | bool | `false` | |
2222
| httpRoute.hostnames[0] | string | `"chart-example.local"` | |
2323
| httpRoute.parentRefs[0].name | string | `"my-gateway"` | |
24-
| httpRoute.rules[0].matches[0].path.type | string | `"Prefix"` | |
24+
| httpRoute.rules[0].matches[0].path.type | string | `"PathPrefix"` | |
2525
| httpRoute.rules[0].matches[0].path.value | string | `"/"` | |
2626
| image.pullPolicy | string | `"IfNotPresent"` | |
2727
| image.repository | string | `"ghcr.io/steveiliop56/tinyauth"` | |

charts/tinyauth/values.schema.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@
8888
"matches": [
8989
{
9090
"path": {
91-
"type": "Prefix",
91+
"type": "PathPrefix",
9292
"value": "/"
9393
}
9494
}

charts/tinyauth/values.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -267,10 +267,10 @@ httpRoute:
267267
- name: my-gateway
268268
hostnames: # @schema default: ["chart-example.local"]
269269
- chart-example.local
270-
rules: # @schema default: [{"matches": [{"path": {"type": "Prefix", "value": "/"}}]}]
270+
rules: # @schema default: [{"matches": [{"path": {"type": "PathPrefix", "value": "/"}}]}]
271271
- matches:
272272
- path:
273-
type: Prefix
273+
type: PathPrefix
274274
value: /
275275

276276
# Additional environment variables for the container

0 commit comments

Comments
 (0)