Skip to content

Commit

Permalink
Fix restjava Topics Metadata API ingress path type (#8477)
Browse files Browse the repository at this point in the history
- Change restjava Topics Metadata API ingress path type to Exact

Signed-off-by: Xin Li <xin@swirldslabs.com>
  • Loading branch information
xin-hedera authored Jun 5, 2024
1 parent 41ccc24 commit 40d50a7
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
4 changes: 2 additions & 2 deletions charts/hedera-mirror-rest-java/templates/ingress.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ spec:
http:
paths:
{{- range .paths }}
- path: {{ . }}
pathType: ImplementationSpecific
- path: {{ .path }}
pathType: {{ .type | default "ImplementationSpecific" }}
backend:
service:
name: {{ $fullName }}
Expand Down
5 changes: 3 additions & 2 deletions charts/hedera-mirror-rest-java/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -79,8 +79,9 @@ ingress:
- host: ""
paths:
# the rest of /api/v1/* is still handled by the Node.js based REST API logic, except for these paths
- "/api/v1/accounts/{id}/allowances/nfts"
- "/api/v1/topics/{id}"
- path: "/api/v1/accounts/{id}/allowances/nfts"
- path: "/api/v1/topics/{id}"
type: Exact
tls:
enabled: false
secretName: ""
Expand Down

0 comments on commit 40d50a7

Please sign in to comment.