Files
truecharts/charts/stable/plant-it/values.yaml
T
f259090de2 chore(helm): update chart common 25.4.10 → 28.12.1 (#36988)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| [common](https://truecharts.org/charts/library/common)
([source](https://ghcr.io/cloudnative-pg/postgis)) | major | `25.4.10`
-> `28.12.1` |

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you
are satisfied.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR has been generated by [Renovate
Bot](https://redirect.github.com/renovatebot/renovate).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMzguMCIsInVwZGF0ZWRJblZlciI6IjM5LjIzOC4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbInJlbm92YXRlL2NvbnRhaW5lciIsInJlbm92YXRlL2hlbG0iLCJ0eXBlL21ham9yIl19-->

---------

Signed-off-by: Alfred Göppel <43101280+alfi0812@users.noreply.github.com>
Co-authored-by: Alfred Göppel <43101280+alfi0812@users.noreply.github.com>
Co-authored-by: alfi0812 <admin@alfi0812.de>
2025-07-06 01:57:44 +02:00

77 lines
1.9 KiB
YAML

image:
repository: docker.io/msdeluise/plant-it-server
pullPolicy: IfNotPresent
tag: 0.10.0@sha256:23ddf8660087d6b9f5dbdca2ca09817b84db45cb2d9d6e2e0176e70f514629e7
securityContext:
container:
runAsNonRoot: false
readOnlyRootFilesystem: false
runAsUser: 0
runAsGroup: 0
workload:
main:
podSpec:
containers:
main:
env:
MYSQL_HOST:
secretKeyRef:
expandObjectName: false
name: '{{ printf "%s-%s" .Release.Name "mariadbcreds" }}'
key: plainhost
MYSQL_PORT: "3306"
MYSQL_USERNAME: "{{ .Values.mariadb.mariadbUsername }}"
MYSQL_PSW: "{{ .Values.mariadb.password }}"
MYSQL_DATABASE: "{{ .Values.mariadb.mariadbDatabase }}"
MYSQL_ROOT_PASSWORD: "{{ .Values.mariadb.rootPassword }}"
JWT_SECRET: "MyJWTSecret"
JWT_EXP: 1
USER_LIMIT: -1
UPLOAD_DIR: /uploads
API_PORT: "{{ .Values.service.main.ports.api.port }}"
TREFLE_KEY: ""
LOG_LEVEL: INFO
ALLOWED_ORIGINS: "*"
CACHE_TTL: 86400
CACHE_HOST:
secretKeyRef:
expandObjectName: false
name: '{{ printf "%s-%s" .Release.Name "rediscreds" }}'
key: plainhost
CACHE_PORT: 6379
SSL_ENABLED: false
CERTIFICATE_PATH: /certificates/
service:
main:
enabled: true
ports:
main:
enabled: true
targetPort: 3000
port: 3000
api:
enabled: true
port: 9701
persistence:
uploads:
enabled: true
mountPath: /uploads
certificates:
enabled: true
mountPath: /certificates
varrun:
enabled: false
mariadb:
enabled: true
mariadbUsername: plantit
mariadbDatabase: plantit
redis:
enabled: true
redisUsername: default