Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added wallet apis to REST endpoint #185

Merged
merged 9 commits into from
Jan 4, 2024
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ spec:
- name: ServiceOptions__EndpointAddress
value: {{ required "A valid externalUrl is required!" .Values.config.externalUrl }}
- name: RestApiOptions__PathBase
value: {{ .Values.rest.pathBase }}
value: {{ .Values.config.pathBase }}
{{- if eq .Values.messageBroker.type "inMemory" }}
- name: MessageBroker__Type
value: InMemory
Expand Down
12 changes: 6 additions & 6 deletions charts/project-origin-wallet/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,14 @@ service:

# config holds general configuration for the wallet server
config:
# externalUrl defines the external url to use for the wallet server
# externalUrl defines the external url to use for the wallet server, this should be the publically accessible and resolvable url of the wallet server.
# example: http://wallet.example.com/api or https://example.com/wallet/api
# This should include the pathBase
externalUrl:

# pathBase defines the base part of all paths in the api of the wallet server, defaults to /api
pathBase: /api

# jwt defines the configuration for the authentication of jwt tokens
jwt:
# audience defines the audience to use for the jwt tokens, defaults to empty string, which means the audience is not checked
Expand Down Expand Up @@ -100,8 +105,3 @@ persistance:

# storage defines the storage configuration for the database
size: 10Gi

# rest defines the configuration of the REST API
rest:
# pathBase defines the base part of all paths in the api
pathBase: /api
Loading