From 882e896c954b668e0c85994855802f4fdfc99079 Mon Sep 17 00:00:00 2001 From: mpw Date: Mon, 6 Mar 2023 10:57:09 -0300 Subject: [PATCH] add b64enc to secrets --- charts/hub-nfts/Chart.yaml | 2 +- charts/hub-nfts/templates/secrets.yaml | 2 +- charts/hub-treasuries/Chart.yaml | 2 +- charts/hub-treasuries/templates/secrets.yaml | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/charts/hub-nfts/Chart.yaml b/charts/hub-nfts/Chart.yaml index 2214ef9..7693ab2 100644 --- a/charts/hub-nfts/Chart.yaml +++ b/charts/hub-nfts/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.4 +version: 0.1.5 # 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-nfts/templates/secrets.yaml b/charts/hub-nfts/templates/secrets.yaml index 71dc280..218b839 100644 --- a/charts/hub-nfts/templates/secrets.yaml +++ b/charts/hub-nfts/templates/secrets.yaml @@ -11,7 +11,7 @@ data: DATABASE_URL: {{ .entries.databaseUrl | b64enc }} KAFKA_PASSWORD: {{ .entries.kafkaPassword | b64enc }} NFT_STORAGE_AUTH_TOKEN: {{ .entries.nftStorageAuthToken | b64enc }} - SOLANA_ENDPOINT: {{ required "must set solana rpc api endpoint" .solanaEndpoint | quote }} + SOLANA_ENDPOINT: {{ required "must set solana rpc api endpoint" .solanaEndpoint | b64enc }} --- apiVersion: v1 kind: Secret diff --git a/charts/hub-treasuries/Chart.yaml b/charts/hub-treasuries/Chart.yaml index ef3e92e..df020f8 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.2.2 +version: 0.2.3 # 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/secrets.yaml b/charts/hub-treasuries/templates/secrets.yaml index e5e384b..1820397 100644 --- a/charts/hub-treasuries/templates/secrets.yaml +++ b/charts/hub-treasuries/templates/secrets.yaml @@ -11,7 +11,7 @@ data: FIREBLOCKS_API_KEY: {{ .entries.fireblocksApiKey | b64enc }} DATABASE_URL: {{ .entries.databaseUrl | b64enc }} KAFKA_PASSWORD: {{ required "must set kafka password" .entries.kafkaPassword | b64enc }} - SOLANA_ENDPOINT: {{ required "must set solana rpc api endpoint" .solanaEndpoint | quote }} + SOLANA_ENDPOINT: {{ required "must set solana rpc api endpoint" .solanaEndpoint | b64enc }} --- apiVersion: v1 kind: Secret