Skip to content

Commit

Permalink
fix missing kafka config
Browse files Browse the repository at this point in the history
  • Loading branch information
dfry committed Mar 27, 2024
1 parent 423bd50 commit 2287526
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 16 deletions.
6 changes: 3 additions & 3 deletions auditing-svc/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,8 @@ ingress:
# kubernetes.io/ingress.class: nginx
# kubernetes.io/tls-acme: "true"
hosts:
- host: chart-example.local
paths: []
- host: chart-example.local
paths: []
tls: []
# - secretName: chart-example-tls
# hosts:
Expand Down Expand Up @@ -123,4 +123,4 @@ initContainers: |
echo Kafka ok!;
env:
- name: KAFKA_URL
value: kafka:9092
value: '{{ .Values.env.kafka_url }}'
8 changes: 3 additions & 5 deletions authentication-svc/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,8 @@ ingress:
# kubernetes.io/ingress.class: nginx
# kubernetes.io/tls-acme: "true"
hosts:
- host: chart-example.local
paths: []
- host: chart-example.local
paths: []
tls: []
# - secretName: chart-example-tls
# hosts:
Expand Down Expand Up @@ -98,7 +98,6 @@ env:
auth_n_issuer_name: mojaloop.vnext.dev.default_issuer
platform_config_base_svc_url: http://platform-configuration-svc:3100


extraEnvs: {}
# - name: KAFKA_URL
# value: kafka:9092
Expand All @@ -115,7 +114,6 @@ extraEnvs: {}
# - name: PLATFORM_CONFIG_BASE_SVC_URL
# value: http://platform-configuration-svc:3100


initContainers: |
- name: wait-for-kafka
image: solsson/kafka:2.8.1
Expand All @@ -133,4 +131,4 @@ initContainers: |
echo Kafka ok!;
env:
- name: KAFKA_URL
value: kafka:9092
value: '{{ .Values.env.kafka_url }}'
8 changes: 3 additions & 5 deletions authorization-svc/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,8 @@ ingress:
# kubernetes.io/ingress.class: nginx
# kubernetes.io/tls-acme: "true"
hosts:
- host: chart-example.local
paths: []
- host: chart-example.local
paths: []
tls: []
# - secretName: chart-example-tls
# hosts:
Expand Down Expand Up @@ -89,7 +89,6 @@ readinessProbe:
initialDelaySeconds: 5
periodSeconds: 10


env:
kafka_url: kafka:9092
kafka_logs_topic: logs
Expand All @@ -106,7 +105,6 @@ extraEnvs: {}
# - name: PLATFORM_CONFIG_BASE_SVC_URL
# value: http://platform-configuration-svc:3100


initContainers: |
- name: wait-for-kafka
image: solsson/kafka:2.8.1
Expand All @@ -124,4 +122,4 @@ initContainers: |
echo Kafka ok!;
env:
- name: KAFKA_URL
value: kafka:9092
value: '{{ .Values.env.kafka_url }}'
6 changes: 3 additions & 3 deletions platform-configuration-svc/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,8 @@ ingress:
# kubernetes.io/ingress.class: nginx
# kubernetes.io/tls-acme: "true"
hosts:
- host: chart-example.local
paths: []
- host: chart-example.local
paths: []
tls: []
# - secretName: chart-example-tls
# hosts:
Expand Down Expand Up @@ -125,7 +125,7 @@ initContainers: |
echo Kafka ok!;
env:
- name: KAFKA_URL
value: kafka:9092
value: '{{ .Values.env.kafka_url }}'
- name: wait-for-auth-z-svc
image: curlimages/curl:8.3.0
Expand Down

0 comments on commit 2287526

Please sign in to comment.