Updates json resource names to avoid issues with kustomize parsing yaml files

Signed-off-by: Andres Gomez Coronel <andresgomezcoronel@gmail.com>
This commit is contained in:
Andres Gomez Coronel 2021-05-26 16:31:34 -03:00
parent abdfeb4aa2
commit 9d16ff7732
No known key found for this signature in database
GPG Key ID: D03B4546382B15BE
9 changed files with 12 additions and 12 deletions

View File

@ -1,5 +1,5 @@
port = 3002 port = 3002
address = "" address = ""
balanceDataPath = "http://localhost:3003/balances/2" balanceDataPath = "http://localhost:3003/balances/balance_2"
profileDataPath = "http://localhost:3003/profiles/2" profileDataPath = "http://localhost:3003/profiles/profile_2"
transactionDataPath = "http://localhost:3003/transactions/2" transactionDataPath = "http://localhost:3003/transactions/transaction_2"

View File

@ -1,5 +1,5 @@
port = 3000 port = 3000
address = "" address = ""
balanceDataPath = "http://localhost:3001/balances/1" balanceDataPath = "http://localhost:3001/balances/balance_1"
profileDataPath = "http://localhost:3001/profiles/1" profileDataPath = "http://localhost:3001/profiles/profile_1"
transactionDataPath = "http://localhost:3001/transactions/1" transactionDataPath = "http://localhost:3001/transactions/transaction_1"

View File

@ -4,16 +4,16 @@ configMapGenerator:
- backend/config/envoy.yaml - backend/config/envoy.yaml
- name: backend-balance-json-data - name: backend-balance-json-data
files: files:
- backend/json/balances/1 - backend/json/balances/balance_1
- backend/json/balances/2 - backend/json/balances/balance_2
- name: backend-profile-json-data - name: backend-profile-json-data
files: files:
- backend/json/profiles/1 - backend/json/profiles/profile_1
- backend/json/profiles/2 - backend/json/profiles/profile_2
- name: backend-transactions-json-data - name: backend-transactions-json-data
files: files:
- backend/json/transactions/1 - backend/json/transactions/transaction_1
- backend/json/transactions/2 - backend/json/transactions/transaction_2
- name: frontend-envoy - name: frontend-envoy
files: files:
- frontend/config/envoy.yaml - frontend/config/envoy.yaml