Skip to content

Commit

Permalink
clean up init container env sections
Browse files Browse the repository at this point in the history
  • Loading branch information
dfry committed Mar 27, 2024
1 parent 2287526 commit 082e962
Show file tree
Hide file tree
Showing 13 changed files with 16 additions and 16 deletions.
2 changes: 1 addition & 1 deletion account-lookup-svc/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -150,4 +150,4 @@ initContainers: |
echo participants-svc ok!;
env:
- name: PARTICIPANTS_SVC_URL
value: http://participants-svc:3010
value: '{{ .Values.env.participants_svc_url }}'
6 changes: 3 additions & 3 deletions accounts-and-balances-builtin-ledger-grpc-svc/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ initContainers: |
echo platform-configuration-svc ok!;
env:
- name: PLATFORM_CONFIG_BASE_SVC_URL
value: http://platform-configuration-svc:3100
value: '{{ .Values.env.platform_config_base_svc_url }}'
- name: wait-for-redis
Expand All @@ -203,6 +203,6 @@ initContainers: |
env:
- name: REDIS_HOST
value: redis-master
value: '{{ .Values.env.redis_host }}'
- name: REDIS_PORT
value: "6379"
value: '{{ .Values.env.redis_port }}'
2 changes: 1 addition & 1 deletion accounts-and-balances-coa-grpc-svc/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -161,4 +161,4 @@ initContainers: |
echo platform-configuration-svc ok!;
env:
- name: PLATFORM_CONFIG_BASE_SVC_URL
value: http://platform-configuration-svc:3100
value: '{{ .Values.env.platform_config_base_svc_url }}'
2 changes: 1 addition & 1 deletion fspiop-api-svc/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -153,4 +153,4 @@ initContainers: |
echo participants-svc ok!;
env:
- name: PARTICIPANTS_SVC_URL
value: http://participants-svc:3010
value: '{{ .Values.env.participants_svc_url }}'
2 changes: 1 addition & 1 deletion participants-svc/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -154,4 +154,4 @@ initContainers: |
echo platform-configuration-svc ok!;
env:
- name: PLATFORM_CONFIG_BASE_SVC_URL
value: http://platform-configuration-svc:3100
value: '{{ .Values.env.platform_config_base_svc_url }}'
4 changes: 2 additions & 2 deletions platform-configuration-svc/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ initContainers: |
echo AUTH_Z_SVC_BASEURL ok!;
env:
- name: AUTH_Z_SVC_BASEURL
value: http://authorization-svc:3202
value: '{{ .Values.env.auth_z_svc_baseurl }}'
- name: wait-for-auth-n-svc
image: curlimages/curl:8.3.0
Expand All @@ -163,4 +163,4 @@ initContainers: |
echo AUTH_N_SVC_BASEURL ok!;
env:
- name: AUTH_N_SVC_BASEURL
value: http://authentication-svc:3201
value: '{{ .Values.env.auth_n_svc_baseurl }}'
2 changes: 1 addition & 1 deletion quoting-svc/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -147,4 +147,4 @@ initContainers: |
echo participants-svc ok!;
env:
- name: PARTICIPANTS_SVC_URL
value: http://participants-svc:3010
value: '{{ .Values.env.participants_svc_url }}'
2 changes: 1 addition & 1 deletion settlements-api-svc/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -150,4 +150,4 @@ initContainers: |
echo platform-configuration-svc ok!;
env:
- name: PLATFORM_CONFIG_BASE_SVC_URL
value: http://platform-configuration-svc:3100
value: '{{ .Values.env.platform_config_base_svc_url }}'
2 changes: 1 addition & 1 deletion settlements-command-handler-svc/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -139,4 +139,4 @@ initContainers: |
echo platform-configuration-svc ok!;
env:
- name: PLATFORM_CONFIG_BASE_SVC_URL
value: http://platform-configuration-svc:3100
value: '{{ .Values.env.platform_config_base_svc_url }}'
2 changes: 1 addition & 1 deletion settlements-event-handler-svc/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -134,4 +134,4 @@ initContainers: |
echo participants-svc ok!;
env:
- name: PARTICIPANTS_SVC_URL
value: http://participants-svc:3010
value: '{{ .Values.env.participants_svc_url }}'
2 changes: 1 addition & 1 deletion transfers-api-svc/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -147,4 +147,4 @@ initContainers: |
echo participants-svc ok!;
env:
- name: PARTICIPANTS_SVC_URL
value: http://participants-svc:3010
value: '{{ .Values.env.participants_svc_url }}'
2 changes: 1 addition & 1 deletion transfers-command-handler-svc/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -142,4 +142,4 @@ initContainers: |
echo settlements-api-svc ok!;
env:
- name: SETTLEMENTS_SVC_URL
value: http://settlements-api-svc:3600
value: '{{ .Values.env.settlements_svc_url }}'
2 changes: 1 addition & 1 deletion transfers-event-handler-svc/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -134,4 +134,4 @@ initContainers: |
echo participants-svc ok!;
env:
- name: PARTICIPANTS_SVC_URL
value: http://participants-svc:3010
value: '{{ .Values.env.participants_svc_url }}'

0 comments on commit 082e962

Please sign in to comment.