diff --git a/README.md b/README.md index c616abaa..a4e7f3e6 100644 --- a/README.md +++ b/README.md @@ -29,7 +29,7 @@ export AKASH_PASSWORD= export AKASH_ACCOUNT_ADDRESS="$(akash keys show $AKASH_KEY_NAME -a)" -helm install provider akash/provider --set akash_client.from=$AKASH_ACCOUNT_ADDRESS --set akash_client.keysecret="$(echo $AKASH_PASSWORD)" --set akash_client.key="$(cat ./key.pem | base64)" --set akash_provider.providercert="$(cat ./provider-cert.pem | base64)" +helm install provider akash/provider --set akash_client.from=$AKASH_ACCOUNT_ADDRESS --set akash_client.keysecret="$(echo $AKASH_PASSWORD | base64)" --set akash_client.key="$(cat ./key.pem | base64)" --set akash_provider.providercert="$(cat ./provider-cert.pem | base64)" ``` To uninstall the chart: diff --git a/charts/provider/Chart.yaml b/charts/provider/Chart.yaml index b19da020..9cb06d17 100644 --- a/charts/provider/Chart.yaml +++ b/charts/provider/Chart.yaml @@ -15,7 +15,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.47.0 +version: 0.48.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/provider/templates/secret.yaml b/charts/provider/templates/secret.yaml index 1cd2fe0c..a5821136 100644 --- a/charts/provider/templates/secret.yaml +++ b/charts/provider/templates/secret.yaml @@ -9,4 +9,4 @@ data: key.txt: | {{ .Values.akash_client.key }} key-pass.txt: | - {{ .Values.akash_client.keysecret | b64enc }} + {{ .Values.akash_client.keysecret }}