diff --git a/charts/hub-treasuries/Chart.yaml b/charts/hub-treasuries/Chart.yaml index 082f9d4..41d4b0f 100644 --- a/charts/hub-treasuries/Chart.yaml +++ b/charts/hub-treasuries/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.1.0 +version: 0.2.0 # 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 d72b5d3..eb6d1a8 100644 --- a/charts/hub-treasuries/templates/environment.yaml +++ b/charts/hub-treasuries/templates/environment.yaml @@ -12,4 +12,5 @@ data: KAFKA_USERNAME: {{ required "must set kafka username" .kafkaUsername | quote }} FIREBLOCKS_ENDPOINT: {{ required "must set fireblocks api endpoint" .fireblocksEndpoint | quote }} SOLANA_ENDPOINT: {{ required "must set solana rpc api endpoint" .solanaEndpoint | quote }} + FIREBLOCKS_SUPPORTED_ASSET_IDS: {{ .fireblocksSupportedAssetIds | quote }} {{- end }} diff --git a/charts/hub-treasuries/values.yaml b/charts/hub-treasuries/values.yaml index bf6b374..447b4e0 100644 --- a/charts/hub-treasuries/values.yaml +++ b/charts/hub-treasuries/values.yaml @@ -89,3 +89,4 @@ environment: kafkaBrokers: "hub-eventbus-cluster-0.hub-eventbus-cluster.default.svc.cluster.local.:9093" kafkaSsl: false kafkaUsername: "" + fireblocksSupportedAssetIds: "SOL_TEST,POLY_TEST"