DEVX-178: [BE] Разработать endpoint выдачи информации для подключении фейн-клиентов через gradle/maven

This commit is contained in:
subochev 2026-03-27 03:36:55 +03:00
parent 6c29f6b142
commit 97859e821d
2 changed files with 13 additions and 3 deletions

View File

@ -20,4 +20,9 @@ data:
front-settings: front-settings:
keycloak-url: '{{$.Values.keycloak.url}}' keycloak-url: '{{$.Values.keycloak.url}}'
keycloak-client-id: '{{$.Values.keycloak.clientId}}' keycloak-client-id: '{{$.Values.keycloak.clientId}}'
keycloak-realm: '{{$.Values.keycloak.realm}}' keycloak-realm: '{{$.Values.keycloak.realm}}'
app:
auth:
enabled: {{$.Value.auth.enabled}}
jwk-uri: {{$.Value.auth.jwk.url}}
jwt-service-claim-name: dev-space

View File

@ -21,5 +21,10 @@ s3:
bucketName: 'devspace' bucketName: 'devspace'
keycloak: keycloak:
url: 'https://192.168.76.150/' url: 'https://192.168.76.150/'
clientId: 'devspace-dev-realm' clientId: 'dev-app'
realm: 'devspace-dev' realm: 'devspace-dev'
auth:
enabled: 'true'
jwk:
url: 'https://192.168.76.150/realms/devspace-dev/protocol/openid-connect/certs'
claimName: 'dev-space'