Skip to content

Commit

Permalink
update env
Browse files Browse the repository at this point in the history
  • Loading branch information
mpwsh committed Feb 14, 2023
1 parent ffd0fe8 commit 3ce95d6
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion charts/hub-orgs/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion charts/hub-treasuries/templates/environment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand Down
2 changes: 1 addition & 1 deletion charts/hub-treasuries/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -85,5 +85,5 @@ environment:
port: 80
solanaEndpoint: "https://api.devnet.solana.com"
fireblocksEndpoint: "https://api.fireblocks.io"
kafkaBrokers: ""
kafkaBrokers:
kafkaSsl: false

0 comments on commit 3ce95d6

Please sign in to comment.