Files
truecharts/charts/stable/seafile/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

84 lines
2.5 KiB
YAML

image:
repository: docker.io/seafileltd/seafile-mc
tag: 12.0.14@sha256:8d0dd6b682c12cb0e1d4f1f73ba223b0176e9e3d43805408a2f631706e9c10e8
pullPolicy: IfNotPresent
service:
main:
ports:
main:
port: 13080
protocol: http
targetPort: 80
securityContext:
container:
readOnlyRootFilesystem: false
runAsNonRoot: false
runAsUser: 0
runAsGroup: 0
workload:
main:
podSpec:
containers:
main:
env:
CACHE_PROVIDER: memcached
DB_HOST:
secretKeyRef:
expandObjectName: false
name: '{{ printf "%s-%s" .Release.Name "mariadbcreds" }}'
key: plainhost
DB_ROOT_PASSWD: "{{ .Values.mariadb.rootPassword }}"
DB_PASSWORD: "{{ .Values.mariadb.password }}"
SEAFILE_SERVER_LETSENCRYPT: false
SEAFILE_SERVER_HOSTNAME: ""
INIT_SEAFILE_ADMIN_EMAIL: me@example.com
INIT_SEAFILE_ADMIN_PASSWORD: a_very_secret_password
FORCE_HTTPS_IN_CONF: false
JWT_PRIVATE_KEY: a_very_very_very_very_secret_key
CLUSTER_SERVER: "true"
CLUSTER_INIT_MODE: "true"
CLUSTER_INIT_MEMCACHED_HOST: '{{ printf "%v-%v" .Release.Name "memcached" }}'
configmap:
env:
enabled: true
data:
env: |
CACHE_PROVIDER= memcached
TIME_ZONE={{ .Values.TZ }}
JWT_PRIVATE_KEY={{ .Values.workload.main.podSpec.containers.main.env.JWT_PRIVATE_KEY }}
SEAFILE_SERVER_PROTOCOL=http
SEAFILE_SERVER_HOSTNAME={{ .Values.workload.main.podSpec.containers.main.env.SEAFILE_SERVER_HOSTNAME }}
SEAFILE_MYSQL_DB_HOST={{ printf "%v-%v" .Release.Name "mariadb" }}
SEAFILE_MYSQL_DB_PORT=3306
SEAFILE_MYSQL_DB_USER={{ .Values.mariadb.mariadbUsername }}
SEAFILE_MYSQL_DB_PASSWORD={{ .Values.mariadb.password }}
SEAFILE_MYSQL_DB_CCNET_DB_NAME=ccnet
SEAFILE_MYSQL_DB_SEAFILE_DB_NAME=seafile
SEAFILE_MYSQL_DB_SEAHUB_DB_NAME=seahub
persistence:
storage:
enabled: true
mountPath: "/shared/seafile"
env:
enabled: true
type: configmap
objectName: env
expandObjectName: true
optional: false
defaultMode: "0777"
items:
- key: env
path: env
targetSelector:
main:
main:
mountPath: /shared/seafile/conf/.env
subPath: env
mariadb:
enabled: true
mariadbUsername: seafile
mariadbDatabase: seafile
memcached:
enabled: true