Added contributing, updated to 0.1.1

This commit is contained in:
Yurii Vlasov 2023-01-31 19:32:38 +02:00
parent 10662cb50d
commit 6f21fec42b
2 changed files with 18 additions and 2 deletions

View File

@ -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:

View File

@ -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 '<username>:<password>' -X POST --upload-file './<archive>.tgz' https://kolaente.dev/api/packages/vikunja/helm/api/charts
```
```shell
helm package .
helm repo add --username '<username>' --password '<password>' vikunja https://kolaente.dev/api/packages/vikunja/helm
helm cm-push './<archive>.tgz' vikunja
```
As you can see, you do not have to specify the name of the repository, just the name of the organization.