Skip to content

Commit 7b5e91e

Browse files
authored
Merge pull request #37 from holaplex/mpw/nfts-treasuries-update
[hub-nfts/hub-treasuries] move solanaEndpoint to secrets
2 parents 349875f + f29ddf7 commit 7b5e91e

File tree

8 files changed

+6
-6
lines changed

8 files changed

+6
-6
lines changed

charts/hub-nfts/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.1.3
21+
version: 0.1.4
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/templates/environment.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ data:
66
{{- with .Values.environment }}
77
PORT: {{ .port | quote }}
88
KAFKA_BROKERS: {{ required "must set kafka brokers" .kafkaBrokers | quote }}
9-
SOLANA_ENDPOINT: {{ required "must set solana endpoint" .solanaEndpoint | quote }}
109
SOLANA_KEYPAIR_PATH: {{ required "must set key pair path" .solanaKeyPairPath | quote }}
1110
KAFKA_USERNAME: {{ required "must set kafka username" .kafkaUsername | quote }}
1211
KAFKA_SSL: {{ required "must set kafka ssl" .kafkaSsl | quote }}

charts/hub-nfts/templates/secrets.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ data:
1111
DATABASE_URL: {{ .entries.databaseUrl | b64enc }}
1212
KAFKA_PASSWORD: {{ .entries.kafkaPassword | b64enc }}
1313
NFT_STORAGE_AUTH_TOKEN: {{ .entries.nftStorageAuthToken | b64enc }}
14+
SOLANA_ENDPOINT: {{ required "must set solana rpc api endpoint" .solanaEndpoint | quote }}
1415
---
1516
apiVersion: v1
1617
kind: Secret

charts/hub-nfts/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,7 @@ secrets:
7878
databaseUrl: ""
7979
kafkaPassword: ""
8080
nftStorageAuthToken: ""
81+
solanaEndpoint: "https://api.devnet.solana.com"
8182
solanaKeyPair: |
8283
""
8384
@@ -87,6 +88,5 @@ environment:
8788
kafkaUsername: ""
8889
kafkaSsl: false
8990
solanaKeyPairPath: "/app/keypair.json"
90-
solanaEndpoint: "https://api.devnet.solana.com"
9191
nftStorageApiEndpoint: "https://api.nft.storage"
9292
ipfsEndpoint: "https://ipfs.io/ipfs/"

charts/hub-treasuries/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.2.1
21+
version: 0.2.2
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-treasuries/templates/environment.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,5 @@ data:
1111
KAFKA_SSL: {{ default "false" .kafkaSsl | quote }}
1212
KAFKA_USERNAME: {{ required "must set kafka username" .kafkaUsername | quote }}
1313
FIREBLOCKS_ENDPOINT: {{ required "must set fireblocks api endpoint" .fireblocksEndpoint | quote }}
14-
SOLANA_ENDPOINT: {{ required "must set solana rpc api endpoint" .solanaEndpoint | quote }}
1514
FIREBLOCKS_SUPPORTED_ASSET_IDS: {{ .fireblocksSupportedAssetIds | quote }}
1615
{{- end }}

charts/hub-treasuries/templates/secrets.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ data:
1111
FIREBLOCKS_API_KEY: {{ .entries.fireblocksApiKey | b64enc }}
1212
DATABASE_URL: {{ .entries.databaseUrl | b64enc }}
1313
KAFKA_PASSWORD: {{ required "must set kafka password" .entries.kafkaPassword | b64enc }}
14+
SOLANA_ENDPOINT: {{ required "must set solana rpc api endpoint" .solanaEndpoint | quote }}
1415
---
1516
apiVersion: v1
1617
kind: Secret

charts/hub-treasuries/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,14 +77,14 @@ secrets:
7777
entries:
7878
databaseUrl: ""
7979
kafkaPassword: ""
80+
solanaEndpoint: "https://api.devnet.solana.com"
8081
fireblocksApiKey: ""
8182
fireblocksPrivateKey: |
8283
""
8384
8485
environment:
8586
logLevel: "info"
8687
port: 80
87-
solanaEndpoint: "https://api.devnet.solana.com"
8888
fireblocksEndpoint: "https://api.fireblocks.io"
8989
kafkaBrokers: "hub-eventbus-cluster-0.hub-eventbus-cluster.default.svc.cluster.local.:9093"
9090
kafkaSsl: false

0 commit comments

Comments
 (0)