Skip to content

Commit 7499a0e

Browse files
authored
Merge pull request #126 from holaplex/espi/compression
[NFTs Solana] Environment Variables for Compression
2 parents b74c288 + 63f34db commit 7499a0e

File tree

4 files changed

+9
-1
lines changed

4 files changed

+9
-1
lines changed

charts/hub-nfts-solana/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ type: application
1818
# This is the chart version. This version number should be incremented each time you make changes
1919
# to the chart and its templates, including the app version.
2020
# Versions are expected to follow Semantic Versioning (https://semver.org/)
21-
version: 0.3.0
21+
version: 0.4.0
2222

2323
# This is the version number of the application being deployed. This version number should be
2424
# incremented each time you make changes to the application. Versions are not expected to

charts/hub-nfts-solana/templates/environment.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,7 @@ data:
88
KAFKA_BROKERS: {{ required "must set kafka brokers" .kafkaBrokers | quote }}
99
KAFKA_USERNAME: {{ required "must set kafka username" .kafkaUsername | quote }}
1010
KAFKA_SSL: {{ required "must set kafka ssl" .kafkaSsl | quote }}
11+
TREE_AUTHORITY: {{ required "must set tree authority" .treeAuthority | quote }}
12+
TREE_DELEGATE: {{ required "must set tree delegate" .treeDelegate | quote }}
13+
MERKLE_TREE: {{ required "must set merkle tree" .merkleTree | quote }}
1114
{{- end }}

charts/hub-nfts-solana/templates/secrets.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ data:
1212
KAFKA_PASSWORD: {{ .entries.kafkaPassword | b64enc }}
1313
SOLANA_ENDPOINT: {{ .entries.solanaEndpoint | b64enc }}
1414
DRAGON_MOUTH_ENDPOINT: {{ .entries.dragonMouthEndpoint | b64enc }}
15+
DIGITAL_ASSETS_API_ENDPOINT: {{ .entries.digitalAssetsApiEndpoint | b64enc }}
1516
DRAGON_MOUTH_X_TOKEN: {{ .entries.dragonMouthXToken | b64enc }}
1617
{{- end }}
1718
{{- end }}

charts/hub-nfts-solana/values.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -98,9 +98,13 @@ secrets:
9898
databaseUrl: ""
9999
dragonMouthEndpoint: ""
100100
dragonMouthXToken: ""
101+
digitalAssetsApiEndpoint: ""
101102

102103
environment:
103104
kafkaBrokers: "hub-eventbus-cluster-0.hub-eventbus-cluster.default.svc.cluster.local.:9093"
104105
kafkaUsername: ""
105106
kafkaSsl: false
106107
solanaTreasuryWalletAddress:
108+
treeAuthority:
109+
treeDelegate:
110+
merkleTree:

0 commit comments

Comments
 (0)