Skip to content

Commit 7f2fdef

Browse files
committed
feat: bump app version to 2.3.0
1 parent 26ab24e commit 7f2fdef

File tree

3 files changed

+34
-29
lines changed

3 files changed

+34
-29
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,11 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
1818
- update readme badge ([4e37850](https://github.com/pmoscode-helm/gotify/commit/4e378504d5f44422f5f4b179f8e9a4cd16605c65) by Peter Motzko).
1919
- update test ([5c4b10c](https://github.com/pmoscode-helm/gotify/commit/5c4b10cd845fe21e5ce54c2899b57a520bfb497c) by Peter Motzko).
2020

21+
### Bug Fixes
22+
23+
- missing "-headless" suffix in ingress ([26ab24e](https://github.com/pmoscode-helm/gotify/commit/26ab24ed3e320385d5152cc65da9011fb7d3bede) by Peter Motzko).
24+
- typo in CONTRIBUTING.md ([145cca2](https://github.com/pmoscode-helm/gotify/commit/145cca2481dd1a12d940eed211c39f8aa0f820e2) by Peter Motzko).
25+
2126
<!-- insertion marker -->
2227
## [gotify-0.1.1](https://github.com/pmoscode-helm/gotify/releases/tag/gotify-0.1.1) - 2023-07-01
2328

Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ name: gotify
33
description: Gotify - a simple server for sending and receiving messages
44

55
type: application
6-
version: 0.1.1
7-
appVersion: "2.2.5"
6+
version: 0.2.0
7+
appVersion: "2.3.0"
88

99
home: https://gotify.net/
1010
sources:

README.md

Lines changed: 27 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# gotify Helm Chart
2-
![Version: 0.1.1](https://img.shields.io/badge/Version-0.1.1-informational?style=flat-square)
2+
![Version: 0.2.0](https://img.shields.io/badge/Version-0.2.0-informational?style=flat-square)
33
[![Artifact Hub](https://img.shields.io/endpoint?url=https://artifacthub.io/badge/repository/gotify)](https://artifacthub.io/packages/search?repo=gotify)
44

55
From https://gotify.net/:
@@ -36,40 +36,40 @@ See [helm upgrade](https://helm.sh/docs/helm/helm_upgrade/) for command document
3636

3737
## Values
3838

39-
| Key | Type | Default | Description |
40-
|----------------------------|--------|------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
41-
| image.pullPolicy | string | `"Always"` | pull policy |
42-
| image.repository | string | `"gotify/server"` | repository with gotify image |
43-
| image.tag | string | `"2.2.5"` | current version of the image |
44-
| imagePullSecrets | list | `[]` | imagePullSecrets (not needed, if default image is used) |
45-
| ingress | object | `{"annotations":{},"className":"","enabled":false,"hosts":[{"host":"chart-example.local","paths":[{"path":"/","pathType":"ImplementationSpecific"}]}],"tls":[]}` | Configure ingress |
46-
| persistence.accessMode | string | `"ReadWriteOnce"` | accessMode |
47-
| persistence.enabled | bool | `false` | enable persistence when true |
48-
| persistence.size | string | `"20Gi"` | default storage size |
49-
| persistence.storageClass | string | `""` | actual storageClass |
50-
| server.databaseConnection | string | `""` | set connection string for mysql (gotify:secret@/gotifydb?charset=utf8&parseTime=True&loc=Local) or postgresql (host=localhost port=3306 user=gotify dbname=gotify password=secret) |
51-
| server.databaseDialect | string | `"sqlite3"` | select database kind (sqlite3, mysql, postgres) |
52-
| server.defaultUserName | string | `"admin"` | default user |
53-
| server.defaultUserPassword | string | `"admin"` | default user password |
54-
| server.passstrength | int | `10` | minimal password length |
55-
| server.registration | bool | `false` | is user registration enabled? |
56-
| server.timezone | string | `"Europe/Berlin"` | server timezone |
57-
| service.port | int | `80` | |
58-
| service.type | string | `"ClusterIP"` | |
59-
| serviceAccount.annotations | object | `{}` | add annotations to serviceAccount |
60-
| serviceAccount.create | bool | `true` | enable serviceAccount |
61-
| serviceAccount.name | string | `""` | name of the serviceAccount (will be generated if empty) |
39+
| Key | Type | Default | Description |
40+
|-----|------|---------|-------------|
41+
| image.pullPolicy | string | `"Always"` | pull policy |
42+
| image.repository | string | `"gotify/server"` | repository with gotify image |
43+
| image.tag | string | `"2.2.5"` | current version of the image |
44+
| imagePullSecrets | list | `[]` | imagePullSecrets (not needed, if default image is used) |
45+
| ingress | object | `{"annotations":{},"className":"","enabled":false,"hosts":[{"host":"chart-example.local","paths":[{"path":"/","pathType":"ImplementationSpecific"}]}],"tls":[]}` | Configure ingress |
46+
| persistence.accessMode | string | `"ReadWriteOnce"` | accessMode |
47+
| persistence.enabled | bool | `false` | enable persistence when true |
48+
| persistence.size | string | `"20Gi"` | default storage size |
49+
| persistence.storageClass | string | `""` | actual storageClass |
50+
| server.databaseConnection | string | `""` | set connection string for mysql (gotify:secret@/gotifydb?charset=utf8&parseTime=True&loc=Local) or postgresql (host=localhost port=3306 user=gotify dbname=gotify password=secret) |
51+
| server.databaseDialect | string | `"sqlite3"` | select database kind (sqlite3, mysql, postgres) |
52+
| server.defaultUserName | string | `"admin"` | default user |
53+
| server.defaultUserPassword | string | `"admin"` | default user password |
54+
| server.passstrength | int | `10` | minimal password length |
55+
| server.registration | bool | `false` | is user registration enabled? |
56+
| server.timezone | string | `"Europe/Berlin"` | server timezone |
57+
| service.port | int | `80` | |
58+
| service.type | string | `"ClusterIP"` | |
59+
| serviceAccount.annotations | object | `{}` | add annotations to serviceAccount |
60+
| serviceAccount.create | bool | `true` | enable serviceAccount |
61+
| serviceAccount.name | string | `""` | name of the serviceAccount (will be generated if empty) |
6262

6363
## Maintainers
6464

65-
| Name | Email | Url |
66-
|----------|--------------------|-----------------------|
65+
| Name | Email | Url |
66+
| ---- | ------ | --- |
6767
| pmoscode | <info@pmoscode.de> | <https://pmoscode.de> |
6868

6969
## Contributing
7070

7171
If you want to add features or bugfixes, please open an issue (either feature or bug) and provide also an unittest (https://github.com/helm-unittest/helm-unittest).
72-
To make things easier, you can use taskfile (https://taskfile.dev/) to get a small shortcut for some useful commands.
72+
To make things easier, you can use Taskfile (https://taskfile.dev/) to get a small shortcut for some useful commands.
7373

7474
You also need to copy the ".env-template" file as ".env" and configure it for your needs.
7575

0 commit comments

Comments
 (0)