Compare commits

...

5 Commits

Author SHA1 Message Date
0f2602fb5a edited version 2025-03-23 20:37:51 +01:00
835e6924cf edited configmap 2025-03-23 20:32:38 +01:00
e81b3dee2f Update readme.md 2025-03-23 18:10:36 +01:00
3a3efdb30b Merge branch 'main' of https://github.com/rtomik/helm-charts 2025-03-23 17:32:41 +01:00
439b8acea7 v1.0.0 2025-03-23 17:32:12 +01:00
3 changed files with 5 additions and 4 deletions

View File

@ -2,7 +2,7 @@ apiVersion: v2
name: donetick name: donetick
description: A Helm chart for Donetick application description: A Helm chart for Donetick application
type: application type: application
version: 0.1.0 version: 1.0.1
appVersion: "latest" appVersion: "latest"
maintainers: maintainers:
- name: Richard Tomik - name: Richard Tomik

View File

@ -18,7 +18,7 @@ To install the chart with the release name `my-donetick`:
```bash ```bash
$ helm repo add donetick-chart https://rtomik.github.io/helm-charts $ helm repo add donetick-chart https://rtomik.github.io/helm-charts
$ helm install my-donetick donetick-chart/donetick $ helm install donetick donetick-chart/donetick
``` ```
> **Tip**: List all releases using `helm list` > **Tip**: List all releases using `helm list`
@ -107,4 +107,4 @@ $ helm delete my-donetick
| `persistence.enabled` | Enable persistence using PVC | `true` | | `persistence.enabled` | Enable persistence using PVC | `true` |
| `persistence.storageClass` | PVC Storage Class | `"longhorn"` | | `persistence.storageClass` | PVC Storage Class | `"longhorn"` |
| `persistence.accessMode` | PVC Access Mode | `ReadWriteOnce` | | `persistence.accessMode` | PVC Access Mode | `ReadWriteOnce` |
| `persistence.size` | | `persistence.size` |

View File

@ -64,7 +64,8 @@ data:
appHost: {{ .Values.config.email.appHost | default "" | quote }} appHost: {{ .Values.config.email.appHost | default "" | quote }}
oauth2: oauth2:
{{- if .Values.config.oauth2.existingSecret }} {{- if .Values.config.oauth2.existingSecret }}
# Client ID and Secret will be injected from Secret client_id: $DT_OAUTH2_CLIENT_ID
client_secret: $DT_OAUTH2_CLIENT_SECRET
{{- else }} {{- else }}
client_id: {{ .Values.config.oauth2.client_id | default "" | quote }} client_id: {{ .Values.config.oauth2.client_id | default "" | quote }}
client_secret: {{ .Values.config.oauth2.client_secret | default "" | quote }} client_secret: {{ .Values.config.oauth2.client_secret | default "" | quote }}