Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[kimai] update appVersion, correct README.md and add new memory_limit… #26

Merged
merged 1 commit into from
Oct 24, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions charts/kimai2/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ apiVersion: v2
name: kimai2
description: A Helm chart for Kubernetes
type: application
version: 1.4.3
appVersion: "apache-1.22.1-prod"
version: 1.4.4
appVersion: "apache-1.27.0-prod"

dependencies:
- name: common
Expand Down
7 changes: 7 additions & 0 deletions charts/kimai2/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,13 +68,20 @@ The command removes all the Kubernetes components associated with the chart and

| Name | Description | Value |
| -------------------------------------- | -------------------------------------------------- | ---------------------------------- |
| `existingSecret` | Use existing secret for password details | `""` |
| `kimaiAppSecret` | Secret used to encrypt session cookies | `change_this_to_something_unique` |
| `kimaiAdminEmail` | Email for the superadmin account | `admin@kimai.local` |
| `kimaiAdminPassword` | Password for the superadmin account | `changemeplease` |
| `kimaiEnvironment` | Kimai environment name | `prod` |
| `kimaiMailerUrl` | SMTP connection for emails | `null://localhost` |
| `kimaiMailerFrom` | Application specific “from” address for all emails | `kimai@example.com` |

### PHP Configuration parameters

| Name | Description | Value |
| -------------------------------------- | ---------------------------------------------------- | ---------------------------------- |
| `php.memory_limit` | The max. amount of memory a script may consume in MB | `128` |

### Kimai deployment parameters

| Name | Description | Value |
Expand Down
2 changes: 2 additions & 0 deletions charts/kimai2/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,8 @@ spec:
- name: TRUSTED_PROXIES
value: {{ .Values.kimaiTrustedProxies }}
{{- end }}
- name: memory_limit
value: {{ .Values.php.memory_limit }}
envFrom:
- secretRef:
name: {{ include "kimai2.name" . }}-secret
Expand Down
5 changes: 5 additions & 0 deletions charts/kimai2/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,11 @@ kimaiMailerFrom: kimai@example.com
##
kimaiTrustedProxies: ""

php:
## @param php.memory_limit Set the max. amount of memory a script may consume in MB
##
memory_limit: 128

podAnnotations: {}

podSecurityContext:
Expand Down