1f2ffc3606
This PR contains the following updates: | Package | Update | Change | |---|---|---| | [victorrds/etesync](https://togithub.com/victor-rds/docker-etebase) | digest | `352c95b` -> `ab89c9e` | --- > [!WARNING] > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **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://togithub.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy40MDguMiIsInVwZGF0ZWRJblZlciI6IjM3LjQwOC4yIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInVwZGF0ZS9kb2NrZXIvZ2VuZXJhbC9ub24tbWFqb3IiXX0=-->
93 lines
2.3 KiB
YAML
93 lines
2.3 KiB
YAML
image:
|
|
repository: victorrds/etesync
|
|
pullPolicy: IfNotPresent
|
|
tag: 0.14.2@sha256:ab89c9eb94b51d1007ff0945c079d042f82ddefd12f4007e5f30f97e26e0ba37
|
|
securityContext:
|
|
container:
|
|
runAsUser: 373
|
|
runAsGroup: 373
|
|
readOnlyRootFilesystem: false
|
|
pod:
|
|
fsGroup: 373
|
|
# Docker image configuration docs:
|
|
# https://github.com/victor-rds/docker-etebase#settings-and-customization
|
|
|
|
# EteSync configuration docs:
|
|
# https://github.com/etesync/server#configuration
|
|
workload:
|
|
main:
|
|
podSpec:
|
|
containers:
|
|
main:
|
|
probes:
|
|
liveness:
|
|
type: tcp
|
|
readiness:
|
|
type: tcp
|
|
startup:
|
|
type: tcp
|
|
env:
|
|
PORT: "{{ .Values.service.main.ports.main.port }}"
|
|
REGEN_INI: true
|
|
# App
|
|
SERVER: http
|
|
AUTO_UPDATE: true
|
|
ALLOWED_HOSTS: "localhost"
|
|
AUTO_SIGNUP: false
|
|
LANGUAGE_CODE: "en-us"
|
|
TIME_ZONE: "{{ .Values.TZ }}"
|
|
# Debugging
|
|
DEBUG: false
|
|
SHELL_DEBUG: false
|
|
DEBUG_DJANGO: false
|
|
# Postgres
|
|
DB_ENGINE: postgres
|
|
DATABASE_NAME: "{{ .Values.cnpg.main.database }}"
|
|
DATABASE_USER: "{{ .Values.cnpg.main.user }}"
|
|
DATABASE_PASSWORD:
|
|
secretKeyRef:
|
|
name: cnpg-main-user
|
|
key: password
|
|
DATABASE_HOST:
|
|
secretKeyRef:
|
|
name: cnpg-main-urls
|
|
key: host
|
|
DATABASE_PORT: 5432
|
|
REDIS_URI:
|
|
secretKeyRef:
|
|
expandObjectName: false
|
|
name: '{{ printf "%s-%s" .Release.Name "rediscreds" }}'
|
|
key: url
|
|
# Superuser
|
|
SUPER_USER: "admin"
|
|
SUPER_PASS: ""
|
|
SUPER_EMAIL: ""
|
|
service:
|
|
main:
|
|
ports:
|
|
main:
|
|
protocol: http
|
|
port: 10254
|
|
persistence:
|
|
app:
|
|
enabled: true
|
|
mountPath: "/data"
|
|
secret:
|
|
enabled: true
|
|
type: secret
|
|
readOnly: true
|
|
mountPath: "/data/secret.txt"
|
|
subPath: "secret.txt"
|
|
objectName: "etesync-secret"
|
|
# Enabled postgres
|
|
cnpg:
|
|
main:
|
|
enabled: true
|
|
user: etesync
|
|
database: etesync
|
|
redis:
|
|
enabled: true
|
|
portal:
|
|
open:
|
|
enabled: true
|