From 8a2870117773932bd1f90376774aa5e7dc2c914b Mon Sep 17 00:00:00 2001 From: Tadej Golobic Date: Wed, 10 Apr 2024 11:22:08 +0200 Subject: [PATCH] fix(rafiki-backend): rename payment pointer url to wallet address url (#33) --- charts/rafiki-backend/Chart.yaml | 2 +- charts/rafiki-backend/templates/configmap.yaml | 2 +- charts/rafiki-backend/values.yaml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/charts/rafiki-backend/Chart.yaml b/charts/rafiki-backend/Chart.yaml index 648dc5f..b069d6e 100644 --- a/charts/rafiki-backend/Chart.yaml +++ b/charts/rafiki-backend/Chart.yaml @@ -17,7 +17,7 @@ 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.1 +version: 0.4.2 # 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 diff --git a/charts/rafiki-backend/templates/configmap.yaml b/charts/rafiki-backend/templates/configmap.yaml index d65c22e..4bee681 100644 --- a/charts/rafiki-backend/templates/configmap.yaml +++ b/charts/rafiki-backend/templates/configmap.yaml @@ -23,7 +23,6 @@ data: OPEN_PAYMENTS_URL: "{{ .Values.serviceUrls.OPEN_PAYMENTS_URL }}" OUTGOING_PAYMENT_WORKERS: "{{ .Values.workers.outgoingPayment }}" OUTGOING_PAYMENT_WORKER_IDLE: "{{ .Values.workerIdle }}" - PAYMENT_POINTER_URL: "{{ .Values.serviceUrls.PAYMENT_POINTER_URL }}" PAYMENT_POINTER_WORKERS: "{{ .Values.workers.paymentPointer }}" PAYMENT_POINTER_WORKER_IDLE: "{{ .Values.workerIdle }}" PRIVATE_KEY_FILE: "{{ .Values.key.file }}" @@ -39,6 +38,7 @@ data: TIGERBEETLE_CLUSTER_ID: none TIGERBEETLE_REPLICA_ADDRESSES: none USE_TIGERBEETLE: "false" + WALLET_ADDRESS_URL: "{{ .Values.serviceUrls.WALLET_ADDRESS_URL }}" WEBHOOK_TIMEOUT: "{{ .Values.lifetime.webhook }}" WEBHOOK_URL: "{{ .Values.serviceUrls.WEBHOOK_URL }}" WEBHOOK_WORKERS: "{{ .Values.workers.webhook }}" diff --git a/charts/rafiki-backend/values.yaml b/charts/rafiki-backend/values.yaml index 00ab5cf..2d17b61 100644 --- a/charts/rafiki-backend/values.yaml +++ b/charts/rafiki-backend/values.yaml @@ -4,7 +4,7 @@ enableManualMigrations: true serviceUrls: PUBLIC_HOST: http://rafiki-backend OPEN_PAYMENTS_URL: http://rafiki-backend - PAYMENT_POINTER_URL: http://rafiki-backend/.well-known/pay + WALLET_ADDRESS_URL: http://rafiki-backend/.well-known/pay WEBHOOK_URL: http://cloud-nine-wallet/webhooks EXCHANGE_RATES_URL: http://cloud-nine-wallet/prices QUOTE_URL: http://cloud-nine-wallet/quotes