Skip to content

Commit d9f6e89

Browse files
[bitnami/schema-registry] Resolve port always being 0 in HTTPRoute resource (#36477)
* fix: #36476 - resolve port always being 0 in HTTPRoute resource Signed-off-by: Paul Reffell <attributeerror@amthst.dev> * Update CHANGELOG.md Signed-off-by: Bitnami Bot <bitnami.bot@broadcom.com> --------- Signed-off-by: Paul Reffell <attributeerror@amthst.dev> Signed-off-by: Bitnami Bot <bitnami.bot@broadcom.com> Co-authored-by: Bitnami Bot <bitnami.bot@broadcom.com>
1 parent ca1d0b3 commit d9f6e89

3 files changed

Lines changed: 12 additions & 4 deletions

File tree

bitnami/schema-registry/CHANGELOG.md

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,16 @@
11
# Changelog
22

3-
## 26.1.0 (2026-02-11)
3+
## 26.1.1 (2026-03-06)
44

5-
* [bitnami/schema-registry] Add support for HTTPRoute resources ([#36458](https://github.com/bitnami/charts/pull/36458))
5+
* [bitnami/schema-registry] Resolve port always being 0 in HTTPRoute resource ([#36477](https://github.com/bitnami/charts/pull/36477))
6+
7+
## 26.1.0 (2026-02-19)
8+
9+
* [bitnami/*] Remove annotations.category (#36224) ([2abc0f9](https://github.com/bitnami/charts/commit/2abc0f9d7e89a5453e57f029c66f581b3d5855ef)), closes [#36224](https://github.com/bitnami/charts/issues/36224)
10+
* [bitnami/*][TNZ-62332] Modify charts' READMEs title (#36372) ([2012e46](https://github.com/bitnami/charts/commit/2012e46699f555bb1e10134691031975bb5ca50b)), closes [#36372](https://github.com/bitnami/charts/issues/36372)
11+
* [bitnami/schema-registry] Add support for HTTPRoute resources (#36458) ([a9905ea](https://github.com/bitnami/charts/commit/a9905eabb01e11d669bffecdab1e55475df72eeb)), closes [#36458](https://github.com/bitnami/charts/issues/36458)
12+
* Change wording in Chart's READMEs (#36379) ([a4ef0a6](https://github.com/bitnami/charts/commit/a4ef0a63877fcf32895869ceef0916c15a4718e5)), closes [#36379](https://github.com/bitnami/charts/issues/36379)
13+
* Remove TAC sentence present in some READMEs (#36381) ([e07d331](https://github.com/bitnami/charts/commit/e07d3319b61f49ddf6f431da3ed7ec0e0be3d5d0)), closes [#36381](https://github.com/bitnami/charts/issues/36381)
614

715
## <small>26.0.5 (2025-08-13)</small>
816

bitnami/schema-registry/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,4 +36,4 @@ maintainers:
3636
name: schema-registry
3737
sources:
3838
- https://github.com/bitnami/charts/tree/main/bitnami/schema-registry
39-
version: 26.1.0
39+
version: 26.1.1

bitnami/schema-registry/templates/http-route.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ spec:
4747
- group: ''
4848
kind: Service
4949
name: {{ include "common.names.fullname" $ }}
50-
port: {{ tpl ($.Values.service.ports.http | default "80" | quote) $ }}
50+
port: {{ (tpl (default "80" (toString $.Values.service.ports.http)) $) | int }}
5151
weight: 1
5252
{{- end }}
5353
{{- if $route.filters }}

0 commit comments

Comments
 (0)