From 6f21fec42b9d97b0280f6ca6a02cd8731b860383 Mon Sep 17 00:00:00 2001 From: Yurii Vlasov Date: Tue, 31 Jan 2023 19:32:38 +0200 Subject: [PATCH] Added contributing, updated to 0.1.1 --- Chart.yaml | 2 +- README.md | 18 +++++++++++++++++- 2 files changed, 18 insertions(+), 2 deletions(-) diff --git a/Chart.yaml b/Chart.yaml index 5c55083..25e8768 100644 --- a/Chart.yaml +++ b/Chart.yaml @@ -10,7 +10,7 @@ description: |- the high alpine areas of the Andes and a relative of the llama. annotations: category: TaskTracker -version: 0.1.0 +version: 0.1.1 appVersion: 0.20.1 kubeVersion: ">= 1.19" dependencies: diff --git a/README.md b/README.md index e5df153..5427954 100644 --- a/README.md +++ b/README.md @@ -36,7 +36,6 @@ raw: spec: domains: - example.com -... ``` Or, let's say, you have decided to use Google SQL database instead of self-hosted, and placed credentials in Google Secret Manager. You plan to use [ExternalSecrets](https://external-secrets.io/v0.7.2/) to get that credentials. These can be easily integrated as well. @@ -101,3 +100,20 @@ raw: ``` Enjoy! + +## Contributing + +In order to publish the chart, you have to either use curl or helm cm-push. + +```shell +helm package . +curl --user ':' -X POST --upload-file './.tgz' https://kolaente.dev/api/packages/vikunja/helm/api/charts +``` + +```shell +helm package . +helm repo add --username '' --password '' vikunja https://kolaente.dev/api/packages/vikunja/helm +helm cm-push './.tgz' vikunja +``` + +As you can see, you do not have to specify the name of the repository, just the name of the organization.