Skip to content
Merged
Show file tree
Hide file tree
Changes from 14 commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
0d59e5f
feat(cloud-native): add support for gRPC bridge
iromli Feb 26, 2026
fd82f10
chore: update FLEX_SOURCE_VERSION
iromli Feb 26, 2026
0e1bc72
fix: strip /jans-auth when calling authzen-configuration
iromli Feb 27, 2026
a7fd0e2
Merge branch 'main' into cn-grpc-bridge
iromli Feb 28, 2026
75d0829
fix: add missing routes for protected endpoints
iromli Mar 1, 2026
f396fad
Merge branch 'main' into cn-grpc-bridge
iromli Mar 6, 2026
18831b1
refactor: create subchart for gateway-api
iromli Mar 6, 2026
57bf70a
chore: explicit appProtocol for grpc service
iromli Mar 6, 2026
2e8e803
chore: fix grpc comments
iromli Mar 6, 2026
3d66ef6
refactor: move gatewayApi configuration to gateway-api
iromli Mar 6, 2026
004ed46
fix: resolve gateway-api chart name
iromli Mar 6, 2026
4453504
chore: mention about required auth-server.lockEnabled flag
iromli Mar 7, 2026
637e5e1
chore: adjust labels and NOTES
iromli Mar 7, 2026
adc4038
refactor(openbanking): change gatewayApi to gateway-api
iromli Mar 7, 2026
0f65a9b
chore: use scoped airlock-gw-params name
iromli Mar 7, 2026
76bd04d
fix: resolve jans-lock endpoints
iromli Mar 7, 2026
2c24bac
refactor: reorganize GA implementation
iromli Mar 9, 2026
958c4fc
Merge branch 'main' into cn-grpc-bridge
iromli Mar 9, 2026
f1c3825
chore: sync openbanking-values.yaml
iromli Mar 9, 2026
7da5cbf
chore: add Gateway API default labels
iromli Mar 9, 2026
391a9f5
chore: set defaultMode for CA cert volume
iromli Mar 9, 2026
d3047e2
refactor: reorganize GA implementation
iromli Mar 9, 2026
f895593
chore: revert FLEX_SOURCE_VERSION
iromli Mar 9, 2026
66d5fa6
Merge branch 'main' into cn-grpc-bridge
moabu Mar 10, 2026
d6bb3e7
docs: update comment for Loadbalancer IP in YAML
moabu Mar 10, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
53 changes: 37 additions & 16 deletions charts/gluu-all-in-one/README.md

Large diffs are not rendered by default.

36 changes: 35 additions & 1 deletion charts/gluu-all-in-one/templates/NOTES.txt
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,38 @@ RECOMMENDATION:
2. This can be left public in demo or internal development environments only.

********************************************************************************
{{- end }}
{{- end }}

{{- with .Values.gatewayApi }}
{{ if .enabled }}
********************************************************************************
*** WARNING: GATEWAY API CONFIGURATION ***
********************************************************************************

The legacy flag `gatewayApi.enabled` is set to TRUE. Any configuration
previously managed by `gatewayApi` will be ignored. See the following sections
for migration.

RECOMMENDATION:

1. Use `gateway-api.enabled` flag.
2. Use `gateway-api` instead of `gatewayApi` to configure the Gateway API.

ATTRIBUTE CHANGES:

| Legacy | New |
| --------------------------------- | ------------------------------------- |
| `gatewayApi.enabled` | `gateway-api.enabled` |
| `gatewayApi.gatewayClassName` | `gateway-api.gateway.className` |
| `gatewayApi.name` | `gateway-api.gateway.name` |
| `gatewayApi.httpPort` | `gateway-api.gateway.httpPort` |
| `gatewayApi.httpsPort` | `gateway-api.gateway.httpsPort` |
| `gatewayApi.tlsSecretName` | `gateway-api.gateway.tlsSecretName` |
| `gatewayApi.gatewayLabels` | `gateway-api.gateway.labels` |
| `gatewayApi.gatewayAnnotations` | `gateway-api.gateway.annotations` |
| `gatewayApi.routeLabels` | `gateway-api.routes.labels` |
| `gatewayApi.routeAnnotations` | `gateway-api.routes.annotations` |

********************************************************************************
{{- end }}
{{- end }}
2 changes: 2 additions & 0 deletions charts/gluu-all-in-one/templates/configmap.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,8 @@ data:
| replace "scriptLogLevel" "script_log_level"
| replace "auditStatsLogTarget" "audit_log_target"
| replace "auditStatsLogLevel" "audit_log_level"
| replace "lockLogTarget" "lock_log_target"
| replace "lockLogLevel" "lock_log_level"
| replace "enableStdoutLogPrefix" "enable_stdout_log_prefix"
| squote
}}
Expand Down
4 changes: 2 additions & 2 deletions charts/gluu-all-in-one/templates/deployment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,8 +77,8 @@ spec:
value: {{ include "saml.customJavaOptions" . | trim }}
- name: CN_SCIM_JAVA_OPTIONS
value: {{ include "scim.customJavaOptions" . | trim }}
{{- include "flex-all-in-one.usr-envs" . | indent 12 }}
{{- include "flex-all-in-one.usr-secret-envs" . | indent 12 }}
{{- include "flex-all-in-one.usr-envs" . | indent 10 }}
{{- include "flex-all-in-one.usr-secret-envs" . | indent 10 }}
securityContext:
runAsUser: 1000
runAsNonRoot: true
Expand Down
Loading
Loading