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

fix(rafiki-auth): add missing env for listing all interactions #42

Open
wants to merge 9 commits into
base: main
Choose a base branch
from
4 changes: 2 additions & 2 deletions charts/rafiki-auth/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 0.4.3
version: 0.4.5

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
# follow Semantic Versioning. They should reflect the version the application is using.
# It is recommended to use it with quotes.
appVersion: 'v1.0.0-alpha.8'
appVersion: 'v1.0.0-alpha.18'
3 changes: 2 additions & 1 deletion charts/rafiki-auth/templates/configmap.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,10 @@ data:
AUTH_PORT: "{{ .Values.port.auth }}"
AUTH_SERVER_DOMAIN: {{ include "auth.grantUrl" . | quote }}
DATABASE_CLEANUP_WORKERS: "{{ .Values.workers.cleanup }}"
IDENTITY_SERVER_DOMAIN: "{{ .Values.identityServer.domain }}"
IDENTITY_SERVER_URL: "{{ .Values.identityServer.domain }}"
INCOMING_PAYMENT_INTERACTION: "{{ .Values.interaction.incomingPayment }}"
QUOTE_INTERACTION: "{{ .Values.interaction.quote }}"
LIST_ALL_ACCESS_INTERACTION: "{{ .Values.interaction.listAll }}"
INTROSPECTION_PORT: "{{ .Values.port.introspection }}"
LOG_LEVEL: "{{ .Values.logLevel }}"
NODE_ENV: "{{ .Values.nodeEnv }}"
Expand Down
3 changes: 2 additions & 1 deletion charts/rafiki-auth/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ identityServer:
interaction:
incomingPayment: "false"
quote: "false"
listAll: "true"
grant:
waitSeconds: 5
accessToken:
Expand All @@ -33,7 +34,7 @@ workers:
cleanup: 1
image:
repository: ghcr.io/interledger/rafiki-auth
tag: 'v1.0.0-alpha.8'
tag: 'v1.0.0-alpha.18'
digest: ''
pullPolicy: IfNotPresent
rollingUpdate:
Expand Down
4 changes: 2 additions & 2 deletions charts/rafiki-backend/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 0.4.4
version: 0.4.5

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
# follow Semantic Versioning. They should reflect the version the application is using.
# It is recommended to use it with quotes.
appVersion: 'v1.0.0-alpha.8'
appVersion: 'v1.0.0-alpha.18'
2 changes: 2 additions & 0 deletions charts/rafiki-backend/templates/configmap.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ metadata:
labels:
{{ include "rafiki-backend.labels" . | indent 4 }}
data:
INSTANCE_NAME: "{{ .Values.instanceName }}"
ADMIN_PORT: "{{ .Values.port.admin }}"
AUTH_SERVER_GRANT_URL: "{{ .Values.serviceUrls.AUTH_SERVER_GRANT_URL }}"
AUTH_SERVER_INTROSPECTION_URL: "{{ .Values.serviceUrls.AUTH_SERVER_INTROSPECTION_URL }}"
Expand All @@ -14,6 +15,7 @@ data:
GRAPHQL_IDEMPOTENCY_KEY_TTL_MS: "{{ .Values.idempotency.keyTTL}}"
GRAPHQL_IDEMPOTENCY_KEY_LOCK_MS: "{{ .Values.idempotency.keyLock}}"
ILP_ADDRESS: "{{ .Values.ilp.address }}"
ILP_CONNECTOR_URL: "{{ .Values.ilp.connectorUrl }}"
INCOMING_PAYMENT_WORKERS: "{{ .Values.workers.incomingPayment }}"
INCOMING_PAYMENT_WORKER_IDLE: "{{ .Values.workerIdle }}"
KEY_ID: "{{ .Values.key.id }}"
Expand Down
4 changes: 3 additions & 1 deletion charts/rafiki-backend/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,11 @@ ilp:
address: test.cloud-nine-wallet # override this value
streamSecret: "BjPXtnd00G2mRQwP/8ZpwyZASOch5sUXT5o0iR5b5wU=" # override this value
slippage: 0.01
connectorUrl: https://connector.example.com # override this value
key:
id: rafiki
file: ''
instanceName: "myRafiki"
quoteSignatureSecret: "overridethisValue"
withdrawalThrottleDelay: ''
lifetime:
Expand All @@ -50,7 +52,7 @@ idempotency:
keyLock: 2000
image:
repository: ghcr.io/interledger/rafiki-backend
tag: 'v1.0.0-alpha.8'
tag: 'v1.0.0-alpha.18'
digest: ''
pullPolicy: IfNotPresent
rollingUpdate:
Expand Down
4 changes: 2 additions & 2 deletions charts/rafiki-frontend/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 0.4.3
version: 0.4.4

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
# follow Semantic Versioning. They should reflect the version the application is using.
# It is recommended to use it with quotes.
appVersion: 'v1.0.0-alpha.8'
appVersion: 'v1.0.0-alpha.18'
1 change: 1 addition & 0 deletions charts/rafiki-frontend/templates/configmap.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ data:
LOG_LEVEL: debug
NODE_ENV: "{{ .Values.nodeEnv }}"
PORT: "{{ .Values.port }}"
AUTH_ENABLED: "{{ .Values.kratos.enabled }}"
KRATOS_CONTAINER_PUBLIC_URL: "{{ .Values.kratos.containerPublicUrl }}"
KRATOS_BROWSER_PUBLIC_URL: "{{ .Values.kratos.browserPublicUrl }}"
KRATOS_ADMIN_URL: "{{ .Values.kratos.adminUrl }}"
9 changes: 5 additions & 4 deletions charts/rafiki-frontend/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ serviceUrls:
port: 3010
image:
repository: ghcr.io/interledger/rafiki-frontend
tag: 'v1.0.0-alpha.8'
tag: 'v1.0.0-alpha.18'
digest: ''
pullPolicy: IfNotPresent
rollingUpdate:
Expand All @@ -19,6 +19,7 @@ serviceAccount:
securityContext:
{}
kratos:
containerPublicUrl:
browserPublicUrl:
adminUrl:
enabled: true
containerPublicUrl: https://example.com
browserPublicUrl: https://example.com
adminUrl: https://admin.example.com