diff --git a/charts/hub-orgs/Chart.yaml b/charts/hub-orgs/Chart.yaml index 994b148..d05140c 100644 --- a/charts/hub-orgs/Chart.yaml +++ b/charts/hub-orgs/Chart.yaml @@ -18,7 +18,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.3.0 +version: 0.3.1 # 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/hub-treasuries/templates/environment.yaml b/charts/hub-treasuries/templates/environment.yaml index f6a4643..4b34dcf 100644 --- a/charts/hub-treasuries/templates/environment.yaml +++ b/charts/hub-treasuries/templates/environment.yaml @@ -7,7 +7,7 @@ data: RUST_LOG: {{ .logLevel }} PORT: {{ .port | quote }} SECRET_PATH: "/app/secret.key" - KAFKA_BROKERS: {{ default "redpanda-0:9093" .kafkaBrokers | quote }} + KAFKA_BROKERS: {{ required "must set kafka brokers" .kafkaBrokers | quote }} KAFKA_SSL: {{ default "false" .kafkaSsl | quote }} FIREBLOCKS_ENDPOINT: {{ required "must set fireblocks api endpoint" .fireblocksEndpoint | quote }} SOLANA_ENDPOINT: {{ required "must set solana rpc api endpoint" .solanaEndpoint | quote }} diff --git a/charts/hub-treasuries/values.yaml b/charts/hub-treasuries/values.yaml index 42ccda4..e8f55bd 100644 --- a/charts/hub-treasuries/values.yaml +++ b/charts/hub-treasuries/values.yaml @@ -85,5 +85,5 @@ environment: port: 80 solanaEndpoint: "https://api.devnet.solana.com" fireblocksEndpoint: "https://api.fireblocks.io" - kafkaBrokers: "" + kafkaBrokers: kafkaSsl: false