From fb2575d90c664cbb2fe34799b62a24aad9d122d0 Mon Sep 17 00:00:00 2001 From: Kyle Espinola Date: Wed, 18 Oct 2023 13:51:15 +0200 Subject: [PATCH] feat: use arweave as the payer for hub uploads --- charts/hub-uploads/Chart.yaml | 2 +- charts/hub-uploads/templates/secrets.yaml | 1 + charts/hub-uploads/values.yaml | 1 + 3 files changed, 3 insertions(+), 1 deletion(-) diff --git a/charts/hub-uploads/Chart.yaml b/charts/hub-uploads/Chart.yaml index 5e5d483..dc6171f 100644 --- a/charts/hub-uploads/Chart.yaml +++ b/charts/hub-uploads/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.2.0 +version: 0.3.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-uploads/templates/secrets.yaml b/charts/hub-uploads/templates/secrets.yaml index 1b65c34..2a3afcb 100644 --- a/charts/hub-uploads/templates/secrets.yaml +++ b/charts/hub-uploads/templates/secrets.yaml @@ -10,5 +10,6 @@ type: Opaque data: SOLANA_KEYPAIR: {{ .entries.solanaKeypair | b64enc }} SOLANA_RPC_URL: {{ .entries.solanaRpcUrl | b64enc }} + ARWEAVE_PRIVATE_KEY: {{ .entries.arweavePrivateKey | b64enc }} {{- end }} {{- end }} diff --git a/charts/hub-uploads/values.yaml b/charts/hub-uploads/values.yaml index d5b539e..888bb4e 100644 --- a/charts/hub-uploads/values.yaml +++ b/charts/hub-uploads/values.yaml @@ -93,6 +93,7 @@ secrets: entries: solanaKeypair: "" solanaRpcUrl: "" + arweavePrivateKey: "" environment: port: "3000"